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

Function dav_add_all_liveprop_xmlns

modules/dav/main/liveprop.c:66–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64}
65
66DAV_DECLARE(void) dav_add_all_liveprop_xmlns(apr_pool_t *p,
67 apr_text_header *phdr)
68{
69 apr_hash_index_t *idx = apr_hash_first(p, dav_liveprop_uris);
70
71 for ( ; idx != NULL; idx = apr_hash_next(idx) ) {
72 const void *key;
73 void *val;
74 const char *s;
75
76 apr_hash_this(idx, &key, NULL, &val);
77
78 s = apr_psprintf(p, " xmlns:lp%ld=\"%s\"", (long)val, (const char *)key);
79 apr_text_append(p, phdr, s);
80 }
81}
82
83DAV_DECLARE(int) dav_do_find_liveprop(const char *ns_uri, const char *name,
84 const dav_liveprop_group *group,

Callers 2

dav_get_allpropsFunction · 0.85
mod_dav.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected