X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fstream-unix.c;h=99a996238ee405eccbe4481ac7fcf8e9b85b2817;hb=e0edde6fee279cdbbf3c179f5f50adaf0c7c7f1e;hp=d2e8e82382ab2b3bd6bcb8cd929a5d511688868f;hpb=7921b912de1e347f418a116f6d83f802dee655e2;p=sliver-openvswitch.git diff --git a/lib/stream-unix.c b/lib/stream-unix.c index d2e8e8238..99a996238 100644 --- a/lib/stream-unix.c +++ b/lib/stream-unix.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -40,7 +40,8 @@ VLOG_DEFINE_THIS_MODULE(stream_unix); /* Active UNIX socket. */ static int -unix_open(const char *name, char *suffix, struct stream **streamp) +unix_open(const char *name, char *suffix, struct stream **streamp, + uint8_t dscp OVS_UNUSED) { const char *connect_path = suffix; int fd; @@ -56,6 +57,7 @@ unix_open(const char *name, char *suffix, struct stream **streamp) const struct stream_class unix_stream_class = { "unix", /* name */ + false, /* needs_probes */ unix_open, /* open */ NULL, /* close */ NULL, /* connect */ @@ -73,7 +75,7 @@ static int punix_accept(int fd, const struct sockaddr *sa, size_t sa_len, static int punix_open(const char *name OVS_UNUSED, char *suffix, - struct pstream **pstreamp) + struct pstream **pstreamp, uint8_t dscp OVS_UNUSED) { int fd, error; @@ -112,6 +114,7 @@ punix_accept(int fd, const struct sockaddr *sa, size_t sa_len, const struct pstream_class punix_pstream_class = { "punix", + false, punix_open, NULL, NULL,