cfm: Remove cfm_remote_mpid configuration.
[cascardo/ovs.git] / lib / cfm.h
1 /* Copyright (c) 2010, 2011 Nicira Networks.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #ifndef CFM_H
17 #define CFM_H 1
18
19 #include <stdint.h>
20
21 #include "hmap.h"
22 #include "openvswitch/types.h"
23
24 struct flow;
25 struct ofpbuf;
26
27 struct cfm_settings {
28     uint16_t mpid;              /* The MPID of this CFM. */
29     int interval;               /* The requested transmission interval. */
30 };
31
32 void cfm_init(void);
33 struct cfm *cfm_create(const char *name);
34 void cfm_destroy(struct cfm *);
35 void cfm_run(struct cfm *);
36 bool cfm_should_send_ccm(struct cfm *);
37 void cfm_compose_ccm(struct cfm *, struct ofpbuf *packet, uint8_t eth_src[6]);
38 void cfm_wait(struct cfm *);
39 bool cfm_configure(struct cfm *, const struct cfm_settings *);
40 bool cfm_should_process_flow(const struct flow *);
41 void cfm_process_heartbeat(struct cfm *, const struct ofpbuf *packet);
42 bool cfm_get_fault(const struct cfm *);
43
44 #endif /* cfm.h */