Working on mods.

FossilOrigin-Name: 7652cbc79f78c5605c07225eb1b5500286f3246b61cb1b96734d0f208570ae67
This commit is contained in:
7u83@mail.ru
2016-02-23 07:58:05 +00:00
parent b2710dc698
commit 82047233c0
5 changed files with 33 additions and 3 deletions

View File

@ -2,6 +2,7 @@
#define __MOD_H
#include <stddef.h>
#include <stdint.h>
#include "sock.h"
#include "conn.h"
@ -16,7 +17,7 @@ struct mod_ac
This function ifter receiving and disassembling a complete
CAPWAP message. Either on Discovery Request or Join Request
**/
int (*detect)(struct conn *conn,const char *rawmsg, int rawlen,struct sockaddr *from);
int (*detect)(struct conn *conn,const uint8_t *rawmsg, int rawlen,struct sockaddr *from);
};