76{
82 int res;
83
87 );
88
89
92 return -1;
93 }
94
96
99 return -1;
100 }
101
104 return -1;
105 }
106
108 if (!pjsip_sorcery) {
110 return -1;
111 }
112
114 if (!endpoint_obj) {
116 return -1;
117 }
118
120 if (!change_set) {
122 return -1;
123 }
124
125 for (it_change_set = change_set; it_change_set; it_change_set = it_change_set->
next) {
126 if (!strcmp(it_change_set->
name,
args.field_name)) {
127 if (!strcmp(it_change_set->
name,
"disallow")) {
129 } else {
131 }
132 break;
133 }
134 }
135
136 res = it_change_set ? 0 : 1;
137 if (res) {
139 }
140
142
143 return res;
144}
#define ast_strdupa(s)
duplicate a string in memory from the stack
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
#define AST_APP_ARG(name)
Define an application argument.
#define AST_DECLARE_APP_ARGS(name, arglist)
Declare a structure to hold an application's arguments.
#define AST_STANDARD_APP_ARGS(args, parse)
Performs the 'standard' argument separation process for an application.
void ast_variables_destroy(struct ast_variable *var)
Free variable list.
struct ast_sorcery * ast_sip_get_sorcery(void)
Get a pointer to the SIP sorcery structure.
#define ast_sorcery_objectset_create(sorcery, object)
Create an object set (KVP list) for an object.
void * ast_sorcery_retrieve_by_id(const struct ast_sorcery *sorcery, const char *type, const char *id)
Retrieve an object using its unique identifier.
static force_inline int attribute_pure ast_strlen_zero(const char *s)
int ast_str_set(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Set a dynamic string using variable arguments.
Full structure for sorcery.
Structure for variables, used for configurations and for channel variables.
struct ast_variable * next
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.