X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/f0aa42be0448d59684f9aa46caf7a4354b6b4f72..aabf1d3fe915334f5ffab9b8e1076917add14358:/plugin.h diff --git a/plugin.h b/plugin.h index dcae48d..faf3a5e 100644 --- a/plugin.h +++ b/plugin.h @@ -1,7 +1,7 @@ #ifndef __PLUGIN_H__ #define __PLUGIN_H__ -#define PLUGIN_API_VERSION 5 +#define PLUGIN_API_VERSION 6 #define MAX_PLUGIN_TYPES 30 enum @@ -15,6 +15,7 @@ enum PLUGIN_KILL_SESSION, PLUGIN_CONTROL, PLUGIN_RADIUS_RESPONSE, + PLUGIN_RADIUS_RESET, PLUGIN_BECOME_MASTER, PLUGIN_NEW_SESSION_MASTER, }; @@ -27,7 +28,7 @@ enum struct pluginfuncs { void (*log)(int level, sessionidt s, tunnelidt t, const char *format, ...); - void (*log_hex)(int level, const char *title, const char *data, int maxsize); + void (*log_hex)(int level, const char *title, const uint8_t *data, int maxsize); char *(*fmtaddr)(in_addr_t addr, int n); sessionidt (*get_session_by_username)(char *username); sessiont *(*get_session_by_id)(sessionidt s); @@ -111,4 +112,10 @@ struct param_radius_response char *value; }; +struct param_radius_reset +{ + tunnelt *t; + sessiont *s; +}; + #endif /* __PLUGIN_H__ */