Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef __INET_TCPSINKAPP_H
00015 #define __INET_TCPSINKAPP_H
00016
00017 #include <omnetpp.h>
00018 #include "INETDefs.h"
00019
00020
00021
00026 class INET_API TCPSinkApp : public cSimpleModule
00027 {
00028 protected:
00029 long bytesRcvd;
00030
00031 protected:
00032 virtual void initialize();
00033 virtual void handleMessage(cMessage *msg);
00034 virtual void finish();
00035 };
00036
00037 #endif
00038
00039