summaryrefslogtreecommitdiff
path: root/ofproto/collectors.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-03-25 15:04:12 -0700
committerBen Pfaff <blp@nicira.com>2011-03-31 16:42:01 -0700
commit81e2083fe6b7c16055f01c4b1e40f25867594bf6 (patch)
tree797735fa486ba538e0c8f8f5a135fceafaf5b0e7 /ofproto/collectors.h
parent53d046612df6c88ad8b02c8e99bbfb6e45fe2326 (diff)
downloadopenvswitch-81e2083fe6b7c16055f01c4b1e40f25867594bf6.tar.gz
ofproto: Change string sets in interface from svec to sset.
Diffstat (limited to 'ofproto/collectors.h')
-rw-r--r--ofproto/collectors.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/ofproto/collectors.h b/ofproto/collectors.h
index ac70f3759..47b148ba4 100644
--- a/ofproto/collectors.h
+++ b/ofproto/collectors.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009 Nicira Networks.
+ * Copyright (c) 2009, 2011 Nicira Networks.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,12 +17,13 @@
#ifndef COLLECTORS_H
#define COLLECTORS_H 1
+#include <stddef.h>
#include <stdint.h>
-#include "svec.h"
struct collectors;
+struct sset;
-int collectors_create(const struct svec *targets, uint16_t default_port,
+int collectors_create(const struct sset *targets, uint16_t default_port,
struct collectors **);
void collectors_destroy(struct collectors *);