Searched defs:url (Results 1 - 3 of 3) sorted by relevance

/bind-9.6-ESV-R11/contrib/zkt/
H A Dmisc.c251 ** parseurl (url, &proto, &host, &port, &para )
252 ** parses the given url (e.g. "proto://host.with.domain:port/para")
255 void parseurl (char *url, char **proto, char **host, char **port, char **para) argument
260 assert ( url != NULL );
263 if ( (p = strchr (url, ':')) == NULL ) /* no protocol string given ? */
264 p = url;
271 *proto = url;
274 p = url;
1045 char url[1024]; local
1053 fprintf (stderr, "usage: url_test <url>\
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dhttpd.c63 * provide the data for it. We pass in the base url (so the same function
69 char *url; member in struct:isc_httpdurl
91 char *url; member in struct:isc_httpd
327 isc_httpdurl_t *url; local
358 url = ISC_LIST_HEAD(httpdmgr->urls);
359 while (url != NULL) {
360 isc_mem_free(httpdmgr->mctx, url->url);
361 ISC_LIST_UNLINK(httpdmgr->urls, url, link);
362 isc_mem_put(httpdmgr->mctx, url, sizeo
612 render_404(const char *url, const char *querystring, void *arg, unsigned int *retcode, const char **retmsg, const char **mimetype, isc_buffer_t *b, isc_httpdfree_t **freecb, void **freecb_args) argument
636 render_500(const char *url, const char *querystring, void *arg, unsigned int *retcode, const char **retmsg, const char **mimetype, isc_buffer_t *b, isc_httpdfree_t **freecb, void **freecb_args) argument
666 isc_httpdurl_t *url; local
1002 isc_httpdmgr_addurl(isc_httpdmgr_t *httpdmgr, const char *url, isc_httpdaction_t *func, void *arg) argument
[all...]
/bind-9.6-ESV-R11/bin/named/
H A Dstatschannel.c979 render_index(const char *url, const char *querystring, void *arg, argument
989 UNUSED(url);
1010 render_xsl(const char *url, const char *querystring, void *args, argument
1015 UNUSED(url);

Completed in 18 milliseconds