server/client

Dependencies:   mbed NetServicesMin

Committer:
recotana
Date:
Thu Feb 23 02:38:05 2012 +0000
Revision:
1:6e61ee662fd3
Parent:
0:432b571e11a3
added standalone test mode

Who changed what in which revision?

UserRevisionLine numberNew contents of line
recotana 0:432b571e11a3 1 #ifndef _TCP_SERVER_
recotana 0:432b571e11a3 2 #define _TCP_SERVER_
recotana 0:432b571e11a3 3
recotana 0:432b571e11a3 4 #include "TCPSocket.h"
recotana 0:432b571e11a3 5
recotana 0:432b571e11a3 6
recotana 0:432b571e11a3 7 int serverInit(void);
recotana 0:432b571e11a3 8 void onServerListnerEvent(TCPSocketEvent e);
recotana 0:432b571e11a3 9 void onServerRecievetEvent(TCPSocketEvent e);
recotana 0:432b571e11a3 10 void recieveDump(char *data , int length);
recotana 0:432b571e11a3 11
recotana 0:432b571e11a3 12
recotana 0:432b571e11a3 13
recotana 0:432b571e11a3 14
recotana 0:432b571e11a3 15 #endif