You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
303 B
18 lines
303 B
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include "UDPTCPNetwork.h"
|
|
|
|
int main (int argc, char **argv) {
|
|
UDP udp;
|
|
char buffer[256] = "Hallo";
|
|
|
|
udp.Listen(12345);
|
|
snprintf (buffer, 256, "ein test, Parameter 0:%s", argv[0]);
|
|
|
|
udp.Write("www.gulpe.de:12345", buffer, strlen (buffer));
|
|
|
|
return 0;
|
|
};
|
|
|