5585d72c86
functions for converting between host and network byte order. These names are the de facto standard names for this functionality because of the original BSD TCP/IP implementation. But they cause problems for uIP/Contiki: some platforms define these names themselves (Mac OS, most notably), causing compilation problems for Contiki on those platforms. This commit changes all htons to uip_htons instead. Same goes for htonl, ntohs, and ntohl. All-caps versions as well.
58 lines
1.4 KiB
C
58 lines
1.4 KiB
C
|
|
#include "contiki-net.h"
|
|
|
|
static struct psock ps;
|
|
static char buffer[100];
|
|
|
|
PROCESS(example_psock_client_process, "Example protosocket client");
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
static int
|
|
handle_connection(struct psock *p)
|
|
{
|
|
PSOCK_BEGIN(p);
|
|
|
|
PSOCK_SEND_STR(p, "GET / HTTP/1.0\r\n");
|
|
PSOCK_SEND_STR(p, "Server: Contiki example protosocket client\r\n");
|
|
PSOCK_SEND_STR(p, "\r\n");
|
|
|
|
while(1) {
|
|
PSOCK_READTO(p, '\n');
|
|
printf("Got: %s", buffer);
|
|
}
|
|
|
|
PSOCK_END(p);
|
|
}
|
|
/*---------------------------------------------------------------------------*/
|
|
PROCESS_THREAD(example_psock_client_process, ev, data)
|
|
{
|
|
uip_ipaddr_t addr;
|
|
|
|
printf("%d\n", TEST);
|
|
|
|
PROCESS_BEGIN();
|
|
|
|
uip_ipaddr(addr, 192,168,2,1);
|
|
tcp_connect(addr, UIP_HTONS(80), NULL);
|
|
|
|
printf("Connecting...\n");
|
|
PROCESS_WAIT_EVENT_UNTIL(ev == tcpip_event);
|
|
|
|
if(uip_aborted() || uip_timedout() || uip_closed()) {
|
|
printf("Could not establish connection\n");
|
|
} else if(uip_connected()) {
|
|
printf("Connected\n");
|
|
|
|
PSOCK_INIT(&ps, buffer, sizeof(buffer));
|
|
|
|
do {
|
|
handle_connection(&ps);
|
|
PROCESS_WAIT_EVENT_UNTIL(ev == tcpip_event);
|
|
} while(!(uip_closed() || uip_aborted() || uip_timedout()));
|
|
|
|
printf("\nConnection closed.\n");
|
|
}
|
|
PROCESS_END();
|
|
}
|
|
/*---------------------------------------------------------------------------*/
|