diff options
Diffstat (limited to 'nxcomp/src/ChannelEndPoint.cpp')
-rw-r--r-- | nxcomp/src/ChannelEndPoint.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nxcomp/src/ChannelEndPoint.cpp b/nxcomp/src/ChannelEndPoint.cpp index 921615bae..78902399c 100644 --- a/nxcomp/src/ChannelEndPoint.cpp +++ b/nxcomp/src/ChannelEndPoint.cpp @@ -150,6 +150,7 @@ ChannelEndPoint::getSpec(char **socketUri) const { void ChannelEndPoint::setDefaultTCPPort(long port) { defaultTCPPort_ = port; + isTCP_ = getTCPHostAndPort(); } void @@ -165,6 +166,8 @@ ChannelEndPoint::setDefaultUnixPath(char *path) { defaultUnixPath_ = strdup(path); else defaultUnixPath_ = NULL; + + isUnix_ = getUnixPath(); } void |