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

/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_heartbeat.c122 apr_table_t *hbt = apr_table_make(pool, 10); local
179 apr_table_clear(hbt);
181 argstr_to_table(pool, apr_pstrdup(pool, t), hbt);
183 if (apr_table_get(hbt, "busy")) {
184 server->busy = atoi(apr_table_get(hbt, "busy"));
187 if (apr_table_get(hbt, "ready")) {
188 server->ready = atoi(apr_table_get(hbt, "ready"));
191 if (apr_table_get(hbt, "lastseen")) {
192 server->seen = atoi(apr_table_get(hbt, "lastseen"));
195 if (apr_table_get(hbt, "por
[all...]
/httpd/modules/cluster/
H A Dmod_heartmonitor.c253 apr_table_t *hbt = apr_table_make(pool, 10); local
306 apr_table_clear(hbt);
307 qs_to_table(apr_pstrdup(pool, t), hbt, pool); local
308 if (apr_table_get(hbt, "busy")) {
309 node.busy = atoi(apr_table_get(hbt, "busy"));
314 if (apr_table_get(hbt, "ready")) {
315 node.ready = atoi(apr_table_get(hbt, "ready"));
320 if (apr_table_get(hbt, "lastseen")) {
321 node.seen = atoi(apr_table_get(hbt, "lastseen"));
327 if (apr_table_get(hbt, "por
[all...]
/httpd/modules/proxy/
H A Dmod_serf.c867 apr_table_t *hbt = apr_table_make(pool, 10); local
893 apr_table_clear(hbt);
895 argstr_to_table(pool, apr_pstrdup(pool, t), hbt);
897 if (apr_table_get(hbt, "busy")) {
898 server->busy = atoi(apr_table_get(hbt, "busy"));
901 if (apr_table_get(hbt, "ready")) {
902 server->ready = atoi(apr_table_get(hbt, "ready"));
905 if (apr_table_get(hbt, "lastseen")) {
906 server->seen = atoi(apr_table_get(hbt, "lastseen"));
909 if (apr_table_get(hbt, "por
[all...]

Completed in 2427 milliseconds