summaryrefslogtreecommitdiff
path: root/lib/stream-provider.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2013-12-17 15:07:12 -0800
committerBen Pfaff <blp@nicira.com>2013-12-17 15:08:38 -0800
commita8d819675f3525a5416ea355382b2e9c47cb2e74 (patch)
treee59a872973de43a29024da9bc04b6f73044e8d99 /lib/stream-provider.h
parentc31964ce3a27bcbc7457346c8d14aa0e83ab72c8 (diff)
downloadopenvswitch-a8d819675f3525a5416ea355382b2e9c47cb2e74.tar.gz
Remove stream, vconn, and rconn functions to get local/remote IPs/ports.
These functions don't have any ultimate users. The in-band control code used to use them, but not anymore, so we might as well delete them all. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Ethan Jackson <ethan@nicira.com>
Diffstat (limited to 'lib/stream-provider.h')
-rw-r--r--lib/stream-provider.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/stream-provider.h b/lib/stream-provider.h
index 43c63e81b..44d75d333 100644
--- a/lib/stream-provider.h
+++ b/lib/stream-provider.h
@@ -29,19 +29,11 @@ struct stream {
const struct stream_class *class;
int state;
int error;
- ovs_be32 remote_ip;
- ovs_be16 remote_port;
- ovs_be32 local_ip;
- ovs_be16 local_port;
char *name;
};
void stream_init(struct stream *, const struct stream_class *,
int connect_status, const char *name);
-void stream_set_remote_ip(struct stream *, ovs_be32 remote_ip);
-void stream_set_remote_port(struct stream *, ovs_be16 remote_port);
-void stream_set_local_ip(struct stream *, ovs_be32 local_ip);
-void stream_set_local_port(struct stream *, ovs_be16 local_port);
static inline void stream_assert_class(const struct stream *stream,
const struct stream_class *class)
{