2013-10-09 04:30:37 +00:00
|
|
|
/* Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License. */
|
|
|
|
|
|
|
|
#ifndef OFPROTO_DPIF_MONITOR_H
|
|
|
|
#define OFPROTO_DPIF_MONITOR_H 1
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-04-18 08:26:56 -07:00
|
|
|
#include "openflow/openflow.h"
|
2013-10-09 04:30:37 +00:00
|
|
|
#include "packets.h"
|
|
|
|
|
|
|
|
struct bfd;
|
|
|
|
struct cfm;
|
2015-02-20 14:17:10 -05:00
|
|
|
struct lldp;
|
2013-10-09 04:30:37 +00:00
|
|
|
struct ofport_dpif;
|
|
|
|
|
2013-12-20 14:53:52 -08:00
|
|
|
void ofproto_dpif_monitor_port_send_soon(const struct ofport_dpif *);
|
|
|
|
|
2013-10-09 04:30:37 +00:00
|
|
|
void ofproto_dpif_monitor_port_update(const struct ofport_dpif *,
|
|
|
|
struct bfd *, struct cfm *,
|
2015-08-28 14:55:11 -07:00
|
|
|
struct lldp *, const struct eth_addr *);
|
2013-10-09 04:30:37 +00:00
|
|
|
|
|
|
|
#endif /* ofproto-dpif-monitor.h */
|