diff options
Diffstat (limited to 'src/tcpsocket.cpp')
-rw-r--r-- | src/tcpsocket.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tcpsocket.cpp b/src/tcpsocket.cpp index 22acdf7..522a6b7 100644 --- a/src/tcpsocket.cpp +++ b/src/tcpsocket.cpp | |||
@@ -42,7 +42,7 @@ Bu::TcpSocket::TcpSocket( int nTcpSocket ) : | |||
42 | setAddress(); | 42 | setAddress(); |
43 | } | 43 | } |
44 | 44 | ||
45 | Bu::TcpSocket::TcpSocket( const Bu::FString &sAddr, int nPort, int nTimeout, | 45 | Bu::TcpSocket::TcpSocket( const Bu::String &sAddr, int nPort, int nTimeout, |
46 | bool bBlocking ) : | 46 | bool bBlocking ) : |
47 | nTcpSocket( 0 ), | 47 | nTcpSocket( 0 ), |
48 | bActive( false ), | 48 | bActive( false ), |
@@ -440,7 +440,7 @@ void Bu::TcpSocket::setAddress() | |||
440 | printf("%d\n", IP_MTU ); | 440 | printf("%d\n", IP_MTU ); |
441 | } | 441 | } |
442 | 442 | ||
443 | Bu::FString Bu::TcpSocket::getAddress() const | 443 | Bu::String Bu::TcpSocket::getAddress() const |
444 | { | 444 | { |
445 | return sAddress; | 445 | return sAddress; |
446 | } | 446 | } |
@@ -460,7 +460,7 @@ Bu::size Bu::TcpSocket::getBlockSize() const | |||
460 | 460 | ||
461 | } | 461 | } |
462 | 462 | ||
463 | Bu::FString Bu::TcpSocket::getLocation() const | 463 | Bu::String Bu::TcpSocket::getLocation() const |
464 | { | 464 | { |
465 | } | 465 | } |
466 | 466 | ||