diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 16:30:19 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 16:30:19 +0000 |
commit | 1499739527b04fa1387806b3d957b329ca36fa95 (patch) | |
tree | 8f24a24fd7123ae255239a6adadccf03ccd5d950 /src/tests | |
parent | 400f12a9d100d48509a48188fcff7f1b820d5826 (diff) | |
download | libbu++-1499739527b04fa1387806b3d957b329ca36fa95.tar.gz libbu++-1499739527b04fa1387806b3d957b329ca36fa95.tar.bz2 libbu++-1499739527b04fa1387806b3d957b329ca36fa95.tar.xz libbu++-1499739527b04fa1387806b3d957b329ca36fa95.zip |
Minor changes to udpsocket test program.
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/udpsocket.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tests/udpsocket.cpp b/src/tests/udpsocket.cpp index 63aa576..682444f 100644 --- a/src/tests/udpsocket.cpp +++ b/src/tests/udpsocket.cpp | |||
@@ -1,6 +1,8 @@ | |||
1 | #include "bu/udpsocket.h" | 1 | #include "bu/udpsocket.h" |
2 | #include "bu/sio.h" | 2 | #include "bu/sio.h" |
3 | 3 | ||
4 | #include <errno.h> | ||
5 | |||
4 | using namespace Bu; | 6 | using namespace Bu; |
5 | 7 | ||
6 | int main( int argc, char *argv[] ) | 8 | int main( int argc, char *argv[] ) |
@@ -26,7 +28,8 @@ int main( int argc, char *argv[] ) | |||
26 | 28 | ||
27 | for(;;) | 29 | for(;;) |
28 | { | 30 | { |
29 | udp.write("hello", 5 ); | 31 | int iWrote = udp.write("hello", 5 ); |
32 | sio << "Wrote(" << iWrote << "): " << strerror( errno ) << sio.nl; | ||
30 | usleep( 250000 ); | 33 | usleep( 250000 ); |
31 | } | 34 | } |
32 | } | 35 | } |