acc_mod.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
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef _ACC_MOD_H
00043 #define _ACC_MOD_H
00044
00045
00046 extern int report_cancels;
00047 extern int report_ack;
00048 extern int early_media;
00049 extern int failed_transaction_flag;
00050 extern int detect_direction;
00051
00052 extern int log_level;
00053 extern int log_flag;
00054 extern int log_missed_flag;
00055
00056
00057 #ifdef RAD_ACC
00058 extern int radius_flag;
00059 extern int radius_missed_flag;
00060 extern void *rh;
00061 #endif
00062
00063 #ifdef DIAM_ACC
00064 #include "diam_tcp.h"
00065 extern rd_buf_t *rb;
00066 extern int diameter_flag;
00067 extern int diameter_missed_flag;
00068 #endif
00069
00070 #ifdef SQL_ACC
00071 extern int db_flag;
00072 extern int db_missed_flag;
00073
00074 extern str db_table_acc;
00075 extern str db_table_mc;
00076
00077 extern str acc_method_col;
00078 extern str acc_fromuri_col;
00079 extern str acc_fromtag_col;
00080 extern str acc_touri_col;
00081 extern str acc_totag_col;
00082 extern str acc_callid_col;
00083 extern str acc_cseqno_col;
00084 extern str acc_sipcode_col;
00085 extern str acc_sipreason_col;
00086 extern str acc_time_col;
00087 #endif
00088
00089
00090 #endif