Lines Matching defs:port
51 unsigned int port;
327 if (apr_table_get(hbt, "port")) {
328 node.port = atoi(apr_table_get(hbt, "port"));
330 node.port = 80;
332 apr_file_printf(fp, "%s &ready=%u&busy=%u&lastseen=%u&port=%u\n",
333 ip, node.ready, node.busy, (unsigned int) seen, node.port);
337 apr_file_printf(fp, "%s &ready=%u&busy=%u&lastseen=%u&port=%u\n",
338 s->ip, s->ready, s->busy, (unsigned int) seen, s->port);
347 apr_file_printf(fp, "%s &ready=%u&busy=%u&lastseen=%u&port=%u\n",
348 s->ip, s->ready, s->busy, (unsigned int) seen, s->port);
425 apr_file_printf(fp, "%s &ready=%u&busy=%u&lastseen=%u&port=%u\n",
426 s->ip, s->ready, s->busy, (unsigned int) seen, s->port);
499 static hm_server_t *hm_get_server(hm_ctx_t *ctx, const char *ip, const int port)
508 s->port = port;
534 int port = 80;
543 if (apr_table_get(tbl, "port") != NULL)
544 port = atoi(apr_table_get(tbl, "port"));
546 s = hm_get_server(ctx, ip, port);
766 hmserver.port = 80;
767 if (apr_table_get(tbl, "port") != NULL)
768 hmserver.port = atoi(apr_table_get(tbl, "port"));
830 apr_port_t port = 0;
848 rv = apr_parse_addr_port(&host_str, &scope_id, &port, mcast_addr, cmd->temp_pool);
858 if (port == 0) {
859 return "HeartbeatListen: No port provided in multicast address";
862 rv = apr_sockaddr_info_get(&ctx->mcast_addr, host_str, APR_INET, port, 0,