Searched defs:payload (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/filters/
H A Dmod_reflector.c36 const char *payload; local
38 payload = apr_table_get(r->headers_in, key);
39 if (payload) {
40 apr_table_setn(r->headers_out, value, payload);
/httpd/modules/ldap/
H A Dutil_ldap_cache.h36 void *payload; /* Pointer to the payload */ member in struct:util_cache_node_t
49 unsigned long (*hash)(void *); /* Func to hash the payload */
51 void * (*copy)(util_ald_cache_t *cache, void *); /* Func to alloc mem and copy payload to new mem */
52 void (*free)(util_ald_cache_t *cache, void *); /* Func to free mem used by the payload */
53 void (*display)(request_rec *r, util_ald_cache_t *cache, void *); /* Func to display the payload contents */
198 void *util_ald_cache_fetch(util_ald_cache_t *cache, void *payload);
199 void *util_ald_cache_insert(util_ald_cache_t *cache, void *payload);
200 void util_ald_cache_remove(util_ald_cache_t *cache, void *payload);
H A Dutil_ldap_cache_mgr.c251 (*cache->free)(cache, p->payload);
412 (*cache->free)(cache, p->payload);
421 void *util_ald_cache_fetch(util_ald_cache_t *cache, void *payload) argument
431 hashval = (*cache->hash)(payload) % cache->size;
434 p && !(*cache->compare)(p->payload, payload);
439 return p->payload;
450 void *util_ald_cache_insert(util_ald_cache_t *cache, void *payload) argument
457 if (cache == NULL || payload == NULL) {
500 /* Take a copy of the payload befor
547 util_ald_cache_remove(util_ald_cache_t *cache, void *payload) argument
[all...]
/httpd/modules/lua/
H A Dlua_request.c2258 unsigned char ubyte, fin, opcode, mask, payload; local
2265 /* Get the payload length and mask bit */
2277 payload = ubyte & 0x7f;
2278 plen = payload;
2280 /* Extended payload? */
2281 if (payload == 126) {
2300 /* Super duper extended payload? */
2301 if (payload == 127) {
2320 (payload >= 126) ? "extra payload"
[all...]

Completed in 2157 milliseconds