00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "FullBufferProtocol.h"
00021
00022 namespace mdw
00023 {
00024
00025 FullBufferProtocol::FullBufferProtocol (StreamSizeServer &server) : _server (server)
00026 {
00027 }
00028
00029
00030 FullBufferProtocol::~FullBufferProtocol()
00031 {
00032 }
00033
00034 void FullBufferProtocol::visitRead (char *buffer, int size, int streamId)
00035 {
00036 }
00037 void FullBufferProtocol::visitConnect (int streamId, std::string &ip)
00038 {
00039 }
00040 void FullBufferProtocol::visitDisconnect (int streamId)
00041 {
00042 }
00043
00044 void FullBufferProtocol::accept (StreamServerVisitor &visitor, int timeOutSec, int timeOutMicro)
00045 {
00046 }
00047 void FullBufferProtocol::accept (StreamSizeServerVisitor &visitor, int timeOutSec, int timeOutMicro)
00048 {
00049 }
00050 void FullBufferProtocol::write (const char* buffer, int size, int streamId)
00051 {
00052 }
00053 Stream &FullBufferProtocol::outStream (int streamId)
00054 {
00055 }
00056 void FullBufferProtocol::close (int streamId)
00057 {
00058 }
00059
00060 }