SimpleSocket 1.0 examples

Dependencies:   EthernetNetIf SimpleSocket 1.0 mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers functions.h Source File

functions.h

00001 #include "mbed.h"
00002 
00003 struct Function {
00004     char *name;
00005     void (*func)();
00006 };
00007 
00008 void echoserver();
00009 void echoclient();
00010 void ntpclient();
00011 void ntpclient2();
00012 void supertweet();
00013 void findbuddy();
00014 void multicast();
00015 void httpclient();
00016 void webserver();
00017 void webcontroller();
00018 void udpsender();
00019 void udpreceiver();
00020 void supertweet();
00021 
00022 Function functions[] = {
00023     "Echo Server", echoserver,
00024     "Echo Client", echoclient,
00025     "NTP Client", ntpclient,
00026     "NTP Client2", ntpclient2,
00027     "Find Buddy", findbuddy,
00028     "Multicast", multicast,
00029     "HTTP Client", httpclient,
00030     "Web Server", webserver,
00031     "Web Controller", webcontroller,
00032     "UDP sender", udpsender,
00033     "UDP receiver", udpreceiver,
00034     "Super Tweet", supertweet,
00035     0, 0
00036 };