X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fvconn-provider.h;h=e6058f335729a0b50f42290cf1b11df5a6d10d11;hb=4766ce7a6438c11743c354fddad9d1164c76c467;hp=f4e9a9e4d6f94d890209a929ea4a025b2db9b1f1;hpb=539b741f5999e22de02b14a35cc3e3855e2dc51d;p=sliver-openvswitch.git 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; };