aboutsummaryrefslogtreecommitdiff
path: root/nxcomp/src/ChannelEndPoint.cpp
diff options
context:
space:
mode:
authorVadim Troshchinskiy <vtroshchinskiy@qindel.com>2017-10-10 13:04:08 +0200
committerVadim Troshchinskiy <vtroshchinskiy@qindel.com>2017-10-10 15:15:32 +0200
commitf2c73bd845c2f07c4194f438ef4ce8bbe249bf40 (patch)
tree146fcc00287144aa47ed27a5e8d4aa7f4be64588 /nxcomp/src/ChannelEndPoint.cpp
parent17ae45e0fd5a5574d5175657d8ce901ce79f2379 (diff)
downloadnx-libs-f2c73bd845c2f07c4194f438ef4ce8bbe249bf40.tar.gz
nx-libs-f2c73bd845c2f07c4194f438ef4ce8bbe249bf40.tar.bz2
nx-libs-f2c73bd845c2f07c4194f438ef4ce8bbe249bf40.zip
Fix bug #525: PANIC! No port specified for multimedia connections
Commit 5f1eb0dc3eb89e84a3b146975e147b995fb7673f introduced a regression that made the use of the multimedia port mandatory. Fixes ArcticaProject/nx-libs#525
Diffstat (limited to 'nxcomp/src/ChannelEndPoint.cpp')
-rw-r--r--nxcomp/src/ChannelEndPoint.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/nxcomp/src/ChannelEndPoint.cpp b/nxcomp/src/ChannelEndPoint.cpp
index 78902399c..4fdf0fad4 100644
--- a/nxcomp/src/ChannelEndPoint.cpp
+++ b/nxcomp/src/ChannelEndPoint.cpp
@@ -312,6 +312,11 @@ ChannelEndPoint::enabled() const {
}
bool
+ChannelEndPoint::configured() const {
+ return ( spec_ && ( strcmp(spec_, "0") != 0) );
+}
+
+bool
ChannelEndPoint::validateSpec() {
isTCP_ = getTCPHostAndPort();
isUnix_ = getUnixPath();