misc_radius/functions.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef _MISC_RADIUS_FUNCTIONS_H_
00025 #define _MISC_RADIUS_FUNCTIONS_H_
00026
00027 extern int radius_load_caller_avps(struct sip_msg* _m, char* _caller,
00028 char* _s2);
00029
00030 extern int radius_load_callee_avps(struct sip_msg* _m, char* _callee,
00031 char* _s2);
00032
00033 int radius_is_user_in(struct sip_msg* _m, char* _user, char* _group);
00034
00035 int radius_does_uri_exist_0(struct sip_msg* _m, char* _s1, char* _s2);
00036
00037 int radius_does_uri_exist_1(struct sip_msg* _m, char* _sp, char* _s2);
00038
00039 int radius_does_uri_user_exist_0(struct sip_msg* _m, char* _s1, char* _s2);
00040
00041 int radius_does_uri_user_exist_1(struct sip_msg* _m, char* _sp, char* _s2);
00042
00043 #endif