X-Git-Url: http://git.tdb.fi/?p=libs%2Fnet.git;a=blobdiff_plain;f=source%2Fnet%2Fcommunicator.cpp;fp=source%2Fnet%2Fcommunicator.cpp;h=92279c24e642bc7c6f9c2b80eba60f69d1b9c8a2;hp=b30a8e965c388c8457b26ae454ce6c399fe5f6fc;hb=400f3e031834eee9d96dbd5cda25655102b75805;hpb=3c2a877580e234df5fcbe06bf2850cd29f875e28 diff --git a/source/net/communicator.cpp b/source/net/communicator.cpp index b30a8e9..92279c2 100644 --- a/source/net/communicator.cpp +++ b/source/net/communicator.cpp @@ -1,5 +1,6 @@ #include #include "communicator.h" +#include "streamsocket.h" using namespace std; @@ -82,6 +83,26 @@ void Communicator::initiate_handshake() handshake_status = 1; } +void Communicator::send_data(unsigned size) +{ + if(!good) + throw sequence_error("connection aborted"); + if(handshake_status!=2) + throw sequence_error("handshake incomplete"); + + try + { + socket.write(out_buf, size); + } + catch(const std::exception &e) + { + good = false; + if(signal_error.empty()) + throw; + signal_error.emit(e); + } +} + void Communicator::data_available() { if(!good)