diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2012-06-01 15:33:43 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-06-01 22:29:53 +0200 |
commit | b3875624ba409160da6ad9292b5ec1e1ec5f2bef (patch) | |
tree | dff1ec2adaf757e21343a69e464a1a1868ef8c8d /src | |
parent | 9ba8f9a503d69b891fae38628e0038f49ed5b8a4 (diff) |
Minor fixed to UDP transport.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/socket_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/socket_base.cpp b/src/socket_base.cpp index 389bfbc..b424a5e 100644 --- a/src/socket_base.cpp +++ b/src/socket_base.cpp @@ -541,7 +541,7 @@ int xs::socket_base_t::connect (const char *addr_) // PGM does not support subscription forwarding; ask for all data to be // sent to this pipe. bool icanhasall = false; - if (protocol == "pgm" || protocol == "epgm") + if (protocol == "pgm" || protocol == "epgm" || protocol == "udp") icanhasall = true; // Attach local end of the pipe to the socket object. |