MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / load_httpd_api

Function load_httpd_api

modules/httpd/httpd_load.h:155–168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153int httpd_bind(httpd_api_t *api);
154
155static inline int load_httpd_api(httpd_api_t *api)
156{
157 load_httpd_f load_httpd;
158
159 /* import the httpd auto-loading functions */
160 if ( !(load_httpd=(load_httpd_f)find_export("httpd_bind", 0)))
161 return -1;
162
163 /* let the auto-loading function load all httpd suuff */
164 if (load_httpd(api)==-1)
165 return -1;
166
167 return 0;
168}
169
170#endif
171

Callers 5

mod_initFunction · 0.85
mod_initFunction · 0.85
mod_initFunction · 0.85
mod_initFunction · 0.85
mod_initFunction · 0.85

Calls 1

find_exportFunction · 0.85

Tested by

no test coverage detected