Home | History | Annotate | Download | only in event_injector

Lines Matching refs:port_name

819     const char* port_name = strchr(host_and_port, ':');
820 if (port_name != NULL) {
821 int to_copy = MIN((int)sizeof(host_name)-1, port_name - host_and_port);
826 port_name++;
831 port_name = host_and_port;
833 // Make sure that port_name is not empty.
834 if (port_name[0] == '\0') {
837 return sock_address_list_create(actual_host_name, port_name, flags);