summaryrefslogtreecommitdiff
path: root/lib/vconn-provider.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2009-09-21 12:33:30 -0700
committerBen Pfaff <blp@nicira.com>2009-09-21 16:44:57 -0700
commit85ab0a021523e51435539af0e6a138c73c9846a2 (patch)
tree82cdffbf1dcd74179c34e85680a0389e067cb8db /lib/vconn-provider.h
parentba25c9d14ad6de05f13d3ebb1fa9242eebf34266 (diff)
downloadopenvswitch-85ab0a021523e51435539af0e6a138c73c9846a2.tar.gz
vconn: Remove unused "reconnectable" member from vconn.
This member is initialized, but nothing ever reads it, so get rid of it.
Diffstat (limited to 'lib/vconn-provider.h')
-rw-r--r--lib/vconn-provider.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/vconn-provider.h b/lib/vconn-provider.h
index ae025f7cb..f245e4c1e 100644
--- a/lib/vconn-provider.h
+++ b/lib/vconn-provider.h
@@ -39,11 +39,10 @@ struct vconn {
uint32_t local_ip;
uint16_t local_port;
char *name;
- bool reconnectable;
};
void vconn_init(struct vconn *, struct vconn_class *, int connect_status,
- const char *name, bool reconnectable);
+ const char *name);
void vconn_set_remote_ip(struct vconn *, uint32_t remote_ip);
void vconn_set_remote_port(struct vconn *, uint16_t remote_port);
void vconn_set_local_ip(struct vconn *, uint32_t local_ip);