diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2011-03-30 22:33:41 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2011-03-30 22:33:41 +0000 |
| commit | 4b9289cfb260f4bcecaf23a810584ef6ef8e8501 (patch) | |
| tree | 79136af08c7e42ba3322f0d73e9779e4354b318a /src/tests/socketbreak.cpp | |
| parent | c7636dc954eddfe58f7959392602fbc9072d77e7 (diff) | |
| download | libbu++-4b9289cfb260f4bcecaf23a810584ef6ef8e8501.tar.gz libbu++-4b9289cfb260f4bcecaf23a810584ef6ef8e8501.tar.bz2 libbu++-4b9289cfb260f4bcecaf23a810584ef6ef8e8501.tar.xz libbu++-4b9289cfb260f4bcecaf23a810584ef6ef8e8501.zip | |
Ok, string stuff is working much, much better, a load of new unit tests have
been added, and I deleted a whole slew of stupid old tests that I don't need.
Diffstat (limited to 'src/tests/socketbreak.cpp')
| -rw-r--r-- | src/tests/socketbreak.cpp | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/tests/socketbreak.cpp b/src/tests/socketbreak.cpp deleted file mode 100644 index d58ebcf..0000000 --- a/src/tests/socketbreak.cpp +++ /dev/null | |||
| @@ -1,35 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | ||
| 3 | * | ||
| 4 | * This file is part of the libbu++ library and is released under the | ||
| 5 | * terms of the license contained in the file LICENSE. | ||
| 6 | */ | ||
| 7 | |||
| 8 | #include "bu/tcpserversocket.h" | ||
| 9 | #include "bu/tcpsocket.h" | ||
| 10 | #include <unistd.h> | ||
| 11 | |||
| 12 | int main() | ||
| 13 | { | ||
| 14 | Bu::TcpServerSocket sSrv( 9987 ); | ||
| 15 | |||
| 16 | Bu::TcpSocket sSend("localhost", 9987 ); | ||
| 17 | |||
| 18 | Bu::TcpSocket sRecv( sSrv.accept() ); | ||
| 19 | |||
| 20 | printf("Connected sockets.\n"); | ||
| 21 | |||
| 22 | sleep( 1 ); | ||
| 23 | printf("Closing sRecv.\n"); | ||
| 24 | sRecv.close(); | ||
| 25 | sleep( 1 ); | ||
| 26 | |||
| 27 | char buf[3]; | ||
| 28 | printf("About to write.\n"); | ||
| 29 | printf("write: %lld\n", sSend.write("hi", 2 ) ); | ||
| 30 | printf("About to read.\n"); | ||
| 31 | printf("read: %lld\n", sSend.read( buf, 2 ) ); | ||
| 32 | |||
| 33 | return 0; | ||
| 34 | } | ||
| 35 | |||
