X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=ofproto%2Fconnmgr.c;h=7776c8898798779e911cd2f41cc4d8eba2e96c5d;hb=64c1e8af2c869ae79fd7a831772818b675e11c7f;hp=7c043a4aa8265bdf74b7bd5d6edc37bba02ab29f;hpb=5d27908667cfa34f7786fdc88e9e09078453637a;p=openvswitch diff --git a/ofproto/connmgr.c b/ofproto/connmgr.c index 7c043a4a..7776c889 100644 --- a/ofproto/connmgr.c +++ b/ofproto/connmgr.c @@ -416,6 +416,21 @@ connmgr_get_controller_info(struct connmgr *mgr, struct shash *info) } } +void +connmgr_free_controller_info(struct shash *info) +{ + struct shash_node *node; + + SHASH_FOR_EACH (node, info) { + struct ofproto_controller_info *cinfo = node->data; + while (cinfo->pairs.n) { + free((char *) cinfo->pairs.values[--cinfo->pairs.n]); + } + free(cinfo); + } + shash_destroy(info); +} + /* Changes 'mgr''s set of controllers to the 'n_controllers' controllers in * 'controllers'. */ void