Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: timvideos/gst-switch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dd37ff607597
Choose a base ref
...
head repository: timvideos/gst-switch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e2101ffc0a7d
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 11, 2015

  1. Changing localhost to 0.0.0.0

    hyades committed Jan 11, 2015
    Copy the full SHA
    e3006ad View commit details
  2. Merge pull request #119 from hyades/localhost_conversion

    Changing localhost to 0.0.0.0
    mithro committed Jan 11, 2015
    Copy the full SHA
    e2101ff View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 plugins/gsttcpmixsrc.c
  2. +1 −1 tools/gstswitchserver.c
2 changes: 1 addition & 1 deletion plugins/gsttcpmixsrc.c
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion tools/gstswitchserver.c
Original file line number Diff line number Diff line change
@@ -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