X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fstream-tcp.c;h=a9bcaeb475ce2f91829d466a3537921969021c96;hb=3fe8053b36da715c411b907ac125e41f9e9a28f2;hp=ecd96865fc286536584dd5d6e41ca49531a29962;hpb=c34b65c731a1b6dae014efe8895141e5b2fe758a;p=openvswitch diff --git a/lib/stream-tcp.c b/lib/stream-tcp.c index ecd96865..a9bcaeb4 100644 --- a/lib/stream-tcp.c +++ b/lib/stream-tcp.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 2010 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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 { @@ -90,6 +90,8 @@ struct stream_class tcp_stream_class = { NULL, /* connect */ NULL, /* recv */ NULL, /* send */ + NULL, /* run */ + NULL, /* run_wait */ NULL, /* wait */ }; @@ -99,16 +101,20 @@ static int ptcp_accept(int fd, const struct sockaddr *sa, size_t sa_len, struct stream **streamp); static int -ptcp_open(const char *name UNUSED, char *suffix, struct pstream **pstreamp) +ptcp_open(const char *name OVS_UNUSED, char *suffix, struct pstream **pstreamp) { + struct sockaddr_in sin; + char bound_name[128]; int fd; - fd = tcp_open_passive(suffix, 0); + fd = inet_open_passive(SOCK_STREAM, suffix, -1, &sin); if (fd < 0) { return -fd; - } else { - return new_fd_pstream("ptcp", fd, ptcp_accept, NULL, pstreamp); } + + sprintf(bound_name, "ptcp:%"PRIu16":"IP_FMT, + ntohs(sin.sin_port), IP_ARGS(&sin.sin_addr.s_addr)); + return new_fd_pstream(bound_name, fd, ptcp_accept, NULL, pstreamp); } static int