X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/9d199a1046599dc863414dda2d0a8f4202abb88d..aabf1d3fe915334f5ffab9b8e1076917add14358:/plugin.h diff --git a/plugin.h b/plugin.h index ca0368f..faf3a5e 100644 --- a/plugin.h +++ b/plugin.h @@ -1,7 +1,7 @@ #ifndef __PLUGIN_H__ #define __PLUGIN_H__ -#define PLUGIN_API_VERSION 4 +#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); @@ -35,6 +36,7 @@ struct pluginfuncs uint16_t (*radiusnew)(sessionidt s); void (*radiussend)(uint16_t r, uint8_t state); void *(*getconfig)(char *key, enum config_typet type); + void (*sessionshutdown)(sessionidt s, char *reason, int result, int error); void (*sessionkill)(sessionidt s, char *reason); void (*throttle)(sessionidt s, int rate_in, int rate_out); int (*session_changed)(int sid); @@ -110,4 +112,10 @@ struct param_radius_response char *value; }; +struct param_radius_reset +{ + tunnelt *t; + sessiont *s; +}; + #endif /* __PLUGIN_H__ */