Lines Matching defs:port

27  * argument is an address and/or port.  The second argument is the key pair
37 * argument is an address and/or port. The second argument is the key pair
110 struct sockaddr_in local_addr; /* local IP address and port */
116 apr_port_t port;
123 apr_port_t port;
165 * Parses a host of the form <address>[:port]
166 * :port is permitted if 'port' is not NULL
209 fprintf(stderr, "a secure port. Exiting!!!\n");
237 if ((sl->port == (c->local_addr)->port) &&
257 apr_snprintf(addr, sizeof(addr), "address %s port %d",
260 apr_snprintf(addr, sizeof(addr), "port %d", ntohs(server->sin_port));
474 unsigned short port;
490 return "Address must end in :<port-number>";
510 port = atoi(ports);
512 if (!port)
515 /* If the specified addr:port was created previously, put the listen
524 oldport = sa->port;
528 if (port == oldport &&
551 new->local_addr.sin_port = htons(port);
558 new->port = port;
569 unsigned short port;
581 return "Address must end in :<port-number>";
596 port = atoi(ports);
598 if (!port)
607 new->port = port;
666 oldport = sa->port;
670 if ((*secwalk)->port == oldport &&
752 oldport = sa->port;
754 unsigned short port = secwalk->port;
759 if (port == oldport &&
804 if ((status = apr_sockaddr_info_get(&lr->bind_addr, sl->addr, APR_UNSPEC, sl->port, 0,
807 "alloc_listener: failed to set up sockaddr for %s:%d", sl->addr, sl->port);
823 if (slu->port == lr->bind_addr->port) {
830 "No Listen directive found for upgradeable listener %s:%d", slu->addr, slu->port);
869 char port[8];
871 itoa((c->local_addr)->port, port, 10);
872 if (!apr_table_do(compare_ipports, (void*)c, t, port, NULL)) {
1247 "specify an address and/or port with a key pair name.\n"
1248 "Optional third parameter of MUTUAL configures the port for mutual authentication."),
1250 "specify an address and/or port with a key pair name, that can be upgraded to an SSL connection.\n"
1251 "The address and/or port must have already be defined using a Listen directive."),