summaryrefslogtreecommitdiff
path: root/lib/vconn-provider.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vconn-provider.h')
-rw-r--r--lib/vconn-provider.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/vconn-provider.h b/lib/vconn-provider.h
index f4e9a9e4d..e6058f335 100644
--- a/lib/vconn-provider.h
+++ b/lib/vconn-provider.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2009, 2010, 2012 Nicira, Inc.
+ * Copyright (c) 2008, 2009, 2010, 2012, 2013 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -33,13 +33,18 @@ struct vconn {
struct vconn_class *class;
int state;
int error;
- uint32_t allowed_versions;
- uint32_t peer_versions;
- enum ofp_version version;
+
+ /* OpenFlow versions. */
+ uint32_t allowed_versions; /* Bitmap of versions we will accept. */
+ uint32_t peer_versions; /* Peer's bitmap of versions it will accept. */
+ enum ofp_version version; /* Negotiated version (or 0). */
+ bool recv_any_version; /* True to receive a message of any version. */
+
ovs_be32 remote_ip;
ovs_be16 remote_port;
ovs_be32 local_ip;
ovs_be16 local_port;
+
char *name;
};