2010-04-30 15:52:48 +00:00
|
|
|
#include "contiki.h"
|
2017-10-30 20:46:45 +00:00
|
|
|
#include "rpl.h"
|
|
|
|
#include "random.h"
|
|
|
|
#include "net/netstack.h"
|
|
|
|
#include "net/ipv6/simple-udp.h"
|
2010-04-30 15:52:48 +00:00
|
|
|
|
2017-10-30 20:46:45 +00:00
|
|
|
#include "sys/log.h"
|
|
|
|
#define LOG_MODULE "App"
|
|
|
|
#define LOG_LEVEL LOG_LEVEL_INFO
|
2010-06-15 19:02:00 +00:00
|
|
|
|
2017-10-30 20:46:45 +00:00
|
|
|
#define WITH_SERVER_REPLY 1
|
|
|
|
#define UDP_CLIENT_PORT 8765
|
|
|
|
#define UDP_SERVER_PORT 5678
|
2010-04-30 15:52:48 +00:00
|
|
|
|
2017-10-30 20:46:45 +00:00
|
|
|
static struct simple_udp_connection udp_conn;
|
2011-08-09 05:02:16 +00:00
|
|
|
|
2010-04-30 15:52:48 +00:00
|
|
|
#define START_INTERVAL (15 * CLOCK_SECOND)
|
2017-10-30 20:46:45 +00:00
|
|
|
#define SEND_INTERVAL (60 * CLOCK_SECOND)
|
2010-04-30 15:52:48 +00:00
|
|
|
|
2017-10-30 20:46:45 +00:00
|
|
|
static struct simple_udp_connection udp_conn;
|
2010-10-18 13:43:41 +00:00
|
|
|
static uip_ipaddr_t server_ipaddr;
|
|
|
|
|
2010-04-30 15:52:48 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2017-10-30 20:46:45 +00:00
|
|
|
PROCESS(udp_client_process, "UDP client");
|
2010-04-30 15:52:48 +00:00
|
|
|
AUTOSTART_PROCESSES(&udp_client_process);
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
2017-10-30 20:46:45 +00:00
|
|
|
udp_rx_callback(struct simple_udp_connection *c,
|
|
|
|
const uip_ipaddr_t *sender_addr,
|
|
|
|
uint16_t sender_port,
|
|
|
|
const uip_ipaddr_t *receiver_addr,
|
|
|
|
uint16_t receiver_port,
|
|
|
|
const uint8_t *data,
|
|
|
|
uint16_t datalen)
|
2010-04-30 15:52:48 +00:00
|
|
|
{
|
2017-10-30 20:46:45 +00:00
|
|
|
unsigned count = *(unsigned *)data;
|
|
|
|
LOG_INFO("Received response %u from ", count);
|
|
|
|
LOG_INFO_6ADDR(sender_addr);
|
|
|
|
LOG_INFO_("\n");
|
2010-04-30 15:52:48 +00:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
PROCESS_THREAD(udp_client_process, ev, data)
|
|
|
|
{
|
2017-10-30 20:46:45 +00:00
|
|
|
static struct etimer periodic_timer;
|
|
|
|
static unsigned count;
|
2010-04-30 15:52:48 +00:00
|
|
|
|
|
|
|
PROCESS_BEGIN();
|
|
|
|
|
2017-10-30 20:46:45 +00:00
|
|
|
INIT_SERVER_IPADDR(server_ipaddr);
|
|
|
|
/* Initialize UDP connection */
|
|
|
|
simple_udp_register(&udp_conn, UDP_CLIENT_PORT, NULL,
|
|
|
|
UDP_SERVER_PORT, udp_rx_callback);
|
2015-08-20 15:13:46 +00:00
|
|
|
|
2017-10-30 20:46:45 +00:00
|
|
|
etimer_set(&periodic_timer, random_rand() % SEND_INTERVAL);
|
|
|
|
PROCESS_WAIT_EVENT_UNTIL(etimer_expired(&periodic_timer));
|
|
|
|
etimer_set(&periodic_timer, SEND_INTERVAL);
|
2010-04-30 15:52:48 +00:00
|
|
|
while(1) {
|
2017-10-30 20:46:45 +00:00
|
|
|
PROCESS_WAIT_EVENT_UNTIL(etimer_expired(&periodic_timer));
|
|
|
|
|
|
|
|
if(rpl_is_reachable()) {
|
|
|
|
LOG_INFO("Sending request %u to ", count);
|
|
|
|
LOG_INFO_6ADDR(&server_ipaddr);
|
|
|
|
LOG_INFO_("\n");
|
|
|
|
simple_udp_sendto(&udp_conn, &count, sizeof(count), &server_ipaddr);
|
|
|
|
count++;
|
|
|
|
} else {
|
|
|
|
LOG_INFO("Not reachable yet %p\n", rpl_get_any_dag());
|
2010-04-30 15:52:48 +00:00
|
|
|
}
|
2015-08-20 15:13:46 +00:00
|
|
|
|
2017-10-30 20:46:45 +00:00
|
|
|
etimer_reset(&periodic_timer);
|
2010-04-30 15:52:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PROCESS_END();
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|