Lines Matching refs:ip
469 uring_sock_create(const char *ip, int port,
490 if (ip == NULL) {
493 if (ip[0] == '[') {
494 snprintf(buf, sizeof(buf), "%s", ip + 1);
499 ip = (const char *) &buf[0];
509 rc = getaddrinfo(ip, portnum, &hints, &res0);
603 "run before starting spdk app.\n", ip);
701 uring_sock_listen(const char *ip, int port, struct spdk_sock_opts *opts)
708 return uring_sock_create(ip, port, SPDK_SOCK_CREATE_LISTEN, opts);
712 uring_sock_connect(const char *ip, int port, struct spdk_sock_opts *opts)
719 return uring_sock_create(ip, port, SPDK_SOCK_CREATE_CONNECT, opts);