X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fstream-tcp.c;h=947be9f19828a07c7e8593a8995dd8713d37bdcf;hb=58fda1dab104041fc693032475ec4662c1a52849;hp=ecd96865fc286536584dd5d6e41ca49531a29962;hpb=c3bb4bd7f1d9c045a5e5d7062b09d4dac4e48195;p=sliver-openvswitch.git diff --git a/lib/stream-tcp.c b/lib/stream-tcp.c index ecd96865f..947be9f19 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 {