X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fstream-tcp.c;h=947be9f19828a07c7e8593a8995dd8713d37bdcf;hb=c39c2868e050922b440fdc9f0ef28b5e2e36fefb;hp=ecd96865fc286536584dd5d6e41ca49531a29962;hpb=c34b65c731a1b6dae014efe8895141e5b2fe758a;p=openvswitch diff --git a/lib/stream-tcp.c b/lib/stream-tcp.c index ecd96865..947be9f1 100644 --- a/lib/stream-tcp.c +++ b/lib/stream-tcp.c @@ -74,7 +74,7 @@ tcp_open(const char *name, char *suffix, struct stream **streamp) struct sockaddr_in sin; int fd, error; - error = tcp_open_active(suffix, 0, &sin, &fd); + error = inet_open_active(SOCK_STREAM, suffix, 0, &sin, &fd); if (fd >= 0) { return new_tcp_stream(name, fd, error, &sin, streamp); } else { @@ -103,7 +103,7 @@ ptcp_open(const char *name UNUSED, char *suffix, struct pstream **pstreamp) { int fd; - fd = tcp_open_passive(suffix, 0); + fd = inet_open_passive(SOCK_STREAM, suffix, 0); if (fd < 0) { return -fd; } else {