Skip to content

Commit

Permalink
Merge pull request #119 from hyades/localhost_conversion
Browse files Browse the repository at this point in the history
Changing localhost to 0.0.0.0
  • Loading branch information
mithro committed Jan 11, 2015
2 parents dd37ff6 + e3006ad commit e2101ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/gsttcpmixsrc.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ GST_DEBUG_CATEGORY_STATIC (tcpmixsrc_debug);
#define TCP_BACKLOG 1 /* client connection queue */
#define TCP_HIGHEST_PORT 65535
#define TCP_DEFAULT_PORT 4953
#define TCP_DEFAULT_HOST "localhost"
#define TCP_DEFAULT_HOST "0.0.0.0"
#define TCP_DEFAULT_LISTEN_HOST NULL /* listen on all interfaces */

#define MAX_READ_SIZE 4 * 1024
Expand Down
2 changes: 1 addition & 1 deletion tools/gstswitchserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#include <string.h>
#include <sys/stat.h>

#define GST_SWITCH_SERVER_DEFAULT_HOST "localhost"
#define GST_SWITCH_SERVER_DEFAULT_HOST "0.0.0.0"
#define GST_SWITCH_SERVER_DEFAULT_VIDEO_ACCEPTOR_PORT 3000
#define GST_SWITCH_SERVER_DEFAULT_AUDIO_ACCEPTOR_PORT 4000
#define GST_SWITCH_SERVER_DEFAULT_CONTROLLER_PORT 5000
Expand Down

0 comments on commit e2101ff

Please sign in to comment.