mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ba3088c4bd
into separate patch files
38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
*** stock_iot-lab_M3/openwsn/03b-IPv6/icmpv6echo.h Thu Apr 24 11:01:36 2014
|
|
--- riot-openwsn-wip/openwsn/03b-IPv6/icmpv6echo.h Thu Apr 24 16:53:29 2014
|
|
***************
|
|
*** 12,24 ****
|
|
|
|
//=========================== typedef =========================================
|
|
|
|
! //=========================== variables =======================================
|
|
|
|
//=========================== prototypes ======================================
|
|
|
|
! void icmpv6echo_init();
|
|
! void icmpv6echo_trigger();
|
|
! void icmpv6echo_sendDone(OpenQueueEntry_t* msg, error_t error);
|
|
void icmpv6echo_receive(OpenQueueEntry_t* msg);
|
|
|
|
/**
|
|
--- 12,30 ----
|
|
|
|
//=========================== typedef =========================================
|
|
|
|
! //=========================== module variables ================================
|
|
!
|
|
! typedef struct {
|
|
! bool busySending;
|
|
! open_addr_t hisAddress;
|
|
! uint16_t seq;
|
|
! } icmpv6echo_vars_t;
|
|
|
|
//=========================== prototypes ======================================
|
|
|
|
! void icmpv6echo_init(void);
|
|
! void icmpv6echo_trigger(void);
|
|
! void icmpv6echo_sendDone(OpenQueueEntry_t* msg, owerror_t error);
|
|
void icmpv6echo_receive(OpenQueueEntry_t* msg);
|
|
|
|
/**
|