MCPcopy Create free account
hub / github.com/apache/httpd / new_ipaddr_chain

Function new_ipaddr_chain

server/vhost.c:370–382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

368}
369
370static ipaddr_chain *new_ipaddr_chain(apr_pool_t *p,
371 server_rec *s, server_addr_rec *sar)
372{
373 ipaddr_chain *new;
374
375 new = apr_palloc(p, sizeof(*new));
376 new->names = NULL;
377 new->initialnames = NULL;
378 new->server = s;
379 new->sar = sar;
380 new->next = NULL;
381 return new;
382}
383
384
385static name_chain *new_name_chain(apr_pool_t *p,

Callers 1

ap_fini_vhost_configFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected