| 153 | int httpd_bind(httpd_api_t *api); |
| 154 | |
| 155 | static 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 |