diff options
author | Steve Huston <shuston@riverace.com> | 1997-11-21 00:14:46 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1997-11-21 00:14:46 +0000 |
commit | 82733e0b81c213371fbeec7c4e3c8e419288b239 (patch) | |
tree | a2d050c1a9ecafbe98bfa0596d29370ea6926cf1 /ace/TLI_Connector.h | |
parent | 7f24f9e50f3bacf9a85b8bb9baf34670783c1119 (diff) | |
download | ATCD-82733e0b81c213371fbeec7c4e3c8e419288b239.tar.gz |
The TLI device name was changed from a hardcoded "dev/tcp" to a name
that can be set from a platform's config file (ACE_TLI_TCP_DEVICE).
HP-UX's config sets this to /dev/inet_cots.
Diffstat (limited to 'ace/TLI_Connector.h')
-rw-r--r-- | ace/TLI_Connector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/TLI_Connector.h b/ace/TLI_Connector.h index 4036943eb54..ba4d1202ee8 100644 --- a/ace/TLI_Connector.h +++ b/ace/TLI_Connector.h @@ -37,7 +37,7 @@ public: int reuse_addr = 0, int flags = O_RDWR, int perms = 0, - const char device[] = "/dev/tcp", + const char device[] = ACE_TLI_TCP_DEVICE, struct t_info *info = 0, int rw_flag = 1, struct netbuf *udata = 0, @@ -63,7 +63,7 @@ public: int reuse_addr = 0, int flags = O_RDWR, int perms = 0, - const char device[] = "/dev/tcp", + const char device[] = ACE_TLI_TCP_DEVICE, struct t_info *info = 0, int rw_flag = 1, struct netbuf *udata = 0, |