mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
Added optional server replies.
This commit is contained in:
parent
64d703a67e
commit
dbd710626a
@ -66,6 +66,11 @@ tcpip_handler(void)
|
||||
PRINTF("DATA recv '%s' from ", appdata);
|
||||
PRINTF("%d", UIP_IP_BUF->srcipaddr.u8[15]);
|
||||
PRINTF("\n");
|
||||
#if SERVER_REPLY
|
||||
uip_ipaddr_copy(&server_conn->ripaddr, &UIP_IP_BUF->srcipaddr);
|
||||
uip_udp_packet_send(server_conn, "Reply", sizeof("Reply"));
|
||||
memset(&server_conn->ripaddr, 0, sizeof(&server_conn->ripaddr));
|
||||
#endif
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
Loading…
Reference in New Issue
Block a user