X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fvconn-stream.c;h=027f48f19a4d1b97489e95f5a6f397ee7749485a;hb=125b02910c61f87364f4c58e3810876ef747a98f;hp=23145ea088467581de55919145194122075ff80b;hpb=efc295d2e6322c9382e3808ba845c6d0ed056ee4;p=sliver-openvswitch.git diff --git a/lib/vconn-stream.c b/lib/vconn-stream.c index 23145ea08..027f48f19 100644 --- a/lib/vconn-stream.c +++ b/lib/vconn-stream.c @@ -82,7 +82,7 @@ vconn_stream_open(const char *name, uint32_t allowed_versions, struct stream *stream; int error; - error = stream_open_with_default_port(name, OFP_TCP_PORT, &stream, dscp); + error = stream_open_with_default_port(name, OFP_OLD_PORT, &stream, dscp); if (!error) { error = stream_connect(stream); if (!error || error == EAGAIN) { @@ -315,7 +315,7 @@ pvconn_pstream_listen(const char *name, uint32_t allowed_versions, struct pstream *pstream; int error; - error = pstream_open_with_default_port(name, OFP_TCP_PORT, + error = pstream_open_with_default_port(name, OFP_OLD_PORT, &pstream, dscp); if (error) { return error;