X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=lib%2Fstream-tcp.c;h=9a7614db73b4f49c30b02e72b41b4362b912b1d8;hb=fbac791aea04553de6efa02e78a9724d85cccb88;hp=2f7e798a615502fb2467098ac5434246f23bb839;hpb=3762274e6359f4afe04107851f4c71347fa0afa0;p=openvswitch diff --git a/lib/stream-tcp.c b/lib/stream-tcp.c index 2f7e798a..9a7614db 100644 --- a/lib/stream-tcp.c +++ b/lib/stream-tcp.c @@ -30,9 +30,9 @@ #include "util.h" #include "stream-provider.h" #include "stream-fd.h" - #include "vlog.h" -#define THIS_MODULE VLM_stream_tcp + +VLOG_DEFINE_THIS_MODULE(stream_tcp); /* Active TCP. */ @@ -84,7 +84,7 @@ tcp_open(const char *name, char *suffix, struct stream **streamp) } } -struct stream_class tcp_stream_class = { +const struct stream_class tcp_stream_class = { "tcp", /* name */ tcp_open, /* open */ NULL, /* close */ @@ -134,7 +134,7 @@ ptcp_accept(int fd, const struct sockaddr *sa, size_t sa_len, return new_tcp_stream(name, fd, 0, sin, streamp); } -struct pstream_class ptcp_pstream_class = { +const struct pstream_class ptcp_pstream_class = { "ptcp", ptcp_open, NULL,