summaryrefslogtreecommitdiff
path: root/lib/smap.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2015-07-18 16:59:08 -0700
committerBen Pfaff <blp@nicira.com>2015-08-03 10:16:44 -0700
commitd65467f16aa59db501adfc79f909fbe8e65ebeec (patch)
tree425d90363d1c04052284d8be7a7811dd00d37bd5 /lib/smap.h
parent710164bc2e30af13a6299e3b8f3981d9289055ba (diff)
downloadopenvswitch-d65467f16aa59db501adfc79f909fbe8e65ebeec.tar.gz
smap: New function smap_get_uuid().
To be used in an upcoming commit. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Russell Bryant <rbryant@redhat.com> Acked-by: Justin Pettit <jpettit@nicira.com>
Diffstat (limited to 'lib/smap.h')
-rw-r--r--lib/smap.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/smap.h b/lib/smap.h
index cac387899..846e38407 100644
--- a/lib/smap.h
+++ b/lib/smap.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012, 2014 Nicira, Inc.
+/* Copyright (c) 2012, 2014, 2015 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,6 +18,7 @@
#include "hmap.h"
struct json;
+struct uuid;
/* A map from string to string. */
struct smap {
@@ -57,6 +58,7 @@ const char *smap_get(const struct smap *, const char *);
struct smap_node *smap_get_node(const struct smap *, const char *);
bool smap_get_bool(const struct smap *smap, const char *key, bool def);
int smap_get_int(const struct smap *smap, const char *key, int def);
+bool smap_get_uuid(const struct smap *, const char *key, struct uuid *);
bool smap_is_empty(const struct smap *);
size_t smap_count(const struct smap *);