Minors fix (spaces, comments, unused variable)

This commit is contained in:
fbernon 2007-05-22 08:20:18 +00:00
parent 81ac03a28b
commit 2106f491d0
3 changed files with 7 additions and 9 deletions

View File

@ -522,7 +522,6 @@ do_disconnect(struct api_msg_msg *msg)
sys_mbox_post(msg->conn->mbox, NULL); sys_mbox_post(msg->conn->mbox, NULL);
} }
void void
do_listen(struct api_msg_msg *msg) do_listen(struct api_msg_msg *msg)
{ {

View File

@ -59,15 +59,14 @@ struct api_msg_msg {
struct { struct {
struct ip_addr *ipaddr; struct ip_addr *ipaddr;
u16_t port; u16_t port;
} bc; } bc; /* do_newconn, do_bind, do_connect, do_join_leave_group*/
struct { struct {
const void *dataptr; const void *dataptr;
u16_t len; u16_t len;
u8_t copy; u8_t copy;
} w; } w; /* do_write */
sys_mbox_t mbox; u16_t len; /* do_recv */
u16_t len; u8_t raw_proto; /* do_newconn */
u8_t raw_proto;
} msg; } msg;
}; };