add DAE support (PoD/CoA) from Vladislav Bjelic
This commit is contained in:
parent
659ed315c2
commit
4f253feef0
16 changed files with 604 additions and 158 deletions
9
plugin.h
9
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,
|
||||
};
|
||||
|
|
@ -111,4 +112,10 @@ struct param_radius_response
|
|||
char *value;
|
||||
};
|
||||
|
||||
struct param_radius_reset
|
||||
{
|
||||
tunnelt *t;
|
||||
sessiont *s;
|
||||
};
|
||||
|
||||
#endif /* __PLUGIN_H__ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue