source: Daodan/Flatline/src/Flatline.c@ 1050

Last change on this file since 1050 was 483, checked in by rossy, 15 years ago

fixed testclient

File size: 366 bytes
Line 
1#include "Flatline.h"
2
3bool FLrServer_PacketCallback(char* data, int datalen, int from)
4{
5 static int recieved = 0;
6
7 data[datalen] = '\0';
8 if (!strcmp(data, "hi"))
9 printf("\r%d packets recieved ", ++recieved);
10 return true;
11}
12
13bool FLrServer_Run()
14{
15 return NetUDPServer_Listen(27777, FLrServer_PacketCallback);
16}
Note: See TracBrowser for help on using the repository browser.