2011-11-25 01:31:54 +01:00
|
|
|
/*
|
|
|
|
* msg_help.h
|
|
|
|
*
|
|
|
|
* Created on: 24.11.2011
|
|
|
|
* Author: Oliver
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MSG_HELP_H_
|
|
|
|
#define MSG_HELP_H_
|
|
|
|
|
|
|
|
// Function IDs
|
2011-12-26 02:59:58 +01:00
|
|
|
#define FID_SIXLOWIP_TCP 0
|
|
|
|
#define FID_SIXLOWIP_UDP 1
|
|
|
|
#define FID_TCP_PH 2
|
|
|
|
#define FID_UDP_PH 3
|
|
|
|
#define FID_H_PAYLOAD 4
|
2012-01-03 02:16:43 +01:00
|
|
|
#define FID_SOCKET_RECV 5
|
|
|
|
#define FID_SOCKET_RECV_FROM 6
|
2011-12-26 02:59:58 +01:00
|
|
|
#define FID_TCP_SYN_ACK 7
|
|
|
|
#define FID_SOCKET_CONNECT 8
|
|
|
|
#define FID_SOCKET_HANDLE_NEW_TCP_CON 9
|
|
|
|
#define FID_TCP_ACK 10
|
2012-01-03 02:16:43 +01:00
|
|
|
#define FID_SOCKET_CLOSE 11
|
2012-01-24 03:19:11 +01:00
|
|
|
#define FID_TCP_CHT 12
|
|
|
|
#define FID_TCP_SHELL 13
|
2011-11-25 01:31:54 +01:00
|
|
|
|
2012-01-24 03:19:11 +01:00
|
|
|
#define RETURNNOW 4000
|
|
|
|
|
2012-02-07 04:24:00 +01:00
|
|
|
void block_continue_thread(void);
|
2012-01-24 03:19:11 +01:00
|
|
|
int net_msg_receive(msg_t *m);
|
|
|
|
int net_msg_reply(msg_t *m, msg_t *reply, uint16_t message);
|
|
|
|
int net_msg_send(msg_t *m, unsigned int pid, bool block, uint16_t message);
|
|
|
|
int net_msg_send_recv(msg_t *m, msg_t *reply, unsigned int pid, uint16_t message);
|
2011-11-25 01:31:54 +01:00
|
|
|
|
|
|
|
#endif /* MSG_HELP_H_ */
|