]> git.proxmox.com Git - ovs.git/blame - ofproto/collectors.h
tnl-neigh-cache: Purge learnt neighbors when port/bridge is deleted
[ovs.git] / ofproto / collectors.h
CommitLineData
6bab3798 1/*
e0edde6f 2 * Copyright (c) 2009, 2011 Nicira, Inc.
6bab3798
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef COLLECTORS_H
18#define COLLECTORS_H 1
19
81e2083f 20#include <stddef.h>
6bab3798 21#include <stdint.h>
6bab3798
BP
22
23struct collectors;
81e2083f 24struct sset;
6bab3798 25
1bb01121 26int collectors_create(const struct sset *targets, int default_port,
6bab3798
BP
27 struct collectors **);
28void collectors_destroy(struct collectors *);
29
fb8f22c1 30size_t collectors_send(const struct collectors *, const void *, size_t);
6bab3798 31
72b06300
BP
32int collectors_count(const struct collectors *);
33
6bab3798 34#endif /* collectors.h */