mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
ba3088c4bd
into separate patch files
54 lines
1.0 KiB
Diff
54 lines
1.0 KiB
Diff
*** stock_iot-lab_M3/openwsn/07-App/tcpprint/tcpprint.c Thu Apr 24 11:01:37 2014
|
|
--- riot-openwsn-wip/openwsn/07-App/tcpprint/tcpprint.c Thu Apr 24 16:55:54 2014
|
|
***************
|
|
*** 10,19 ****
|
|
|
|
//=========================== public ==========================================
|
|
|
|
! void tcpprint_init() {
|
|
}
|
|
|
|
! bool tcpprint_shouldIlisten(){
|
|
return TRUE;
|
|
}
|
|
|
|
--- 10,19 ----
|
|
|
|
//=========================== public ==========================================
|
|
|
|
! void tcpprint_init(void) {
|
|
}
|
|
|
|
! bool tcpprint_shouldIlisten(void){
|
|
return TRUE;
|
|
}
|
|
|
|
***************
|
|
*** 24,36 ****
|
|
openqueue_freePacketBuffer(msg);
|
|
}
|
|
|
|
! void tcpprint_connectDone(error_t error) {
|
|
}
|
|
|
|
! void tcpprint_sendDone(OpenQueueEntry_t* msg, error_t error) {
|
|
}
|
|
|
|
! bool tcpprint_debugPrint() {
|
|
return FALSE;
|
|
}
|
|
|
|
--- 24,36 ----
|
|
openqueue_freePacketBuffer(msg);
|
|
}
|
|
|
|
! void tcpprint_connectDone(owerror_t error) {
|
|
}
|
|
|
|
! void tcpprint_sendDone(OpenQueueEntry_t* msg, owerror_t error) {
|
|
}
|
|
|
|
! bool tcpprint_debugPrint(void) {
|
|
return FALSE;
|
|
}
|