diff options
author | Pixel <Pixel> | 2001-12-04 00:02:52 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-12-04 00:02:52 +0000 |
commit | c0fc6d58ffd11919ad9ba845c13cb00fd7fadff2 (patch) | |
tree | 115db0d207ae75a6ac1e4e504ae59d5975bc1f47 /lib/Socket.cc | |
parent | 4c92126b8eb52a43ccef28be0155374f2e6f7490 (diff) |
Small changes
Diffstat (limited to 'lib/Socket.cc')
-rw-r--r-- | lib/Socket.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Socket.cc b/lib/Socket.cc index 1d93bb5..62de4b6 100644 --- a/lib/Socket.cc +++ b/lib/Socket.cc @@ -61,7 +61,7 @@ void Socket::CloseRead(void) { \***********************************************/ -bool Socket::SetLocal(String vhost, int port) { +bool Socket::SetLocal(const String & vhost, int port) { struct hostent * localhostent; struct in_addr localhostaddr; struct sockaddr_in localsocketaddr; @@ -91,7 +91,7 @@ bool Socket::SetLocal(String vhost, int port) { } } -bool Socket::Connect(String host, int port) { +bool Socket::Connect(const String & host, int port) { struct hostent * remotehostent; struct sockaddr_in remotesocketaddr; |