Add unit test infrastructure for LISP protocol
[vpp.git] / vnet / vnet / lisp-cp / lisp_msg_serdes.h
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
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 VNET_LISP_GPE_LISP_MSG_BUILDER_H_
17 #define VNET_LISP_GPE_LISP_MSG_BUILDER_H_
18
19 #include <vnet/vnet.h>
20 #include <vnet/lisp-cp/lisp_cp_messages.h>
21 #include <vnet/lisp-cp/control.h>
22
23 void *
24 lisp_msg_put_mreq (lisp_cp_main_t * lcm, vlib_buffer_t * b,
25                    gid_address_t * seid, gid_address_t * deid,
26                    ip_address_t * rlocs, u8 is_smr_invoked, u64 * nonce);
27
28 void *
29 lisp_msg_push_ecm (vlib_main_t * vm, vlib_buffer_t *b, int lp, int rp,
30                    gid_address_t *la, gid_address_t *ra);
31
32 u32
33 lisp_msg_parse_mapping_record (vlib_buffer_t * b, gid_address_t * eid,
34                                locator_t ** locs, locator_t * probed_);
35
36 u32
37 lisp_msg_parse_addr (vlib_buffer_t * b, gid_address_t * eid);
38
39 u32
40 lisp_msg_parse_eid_rec (vlib_buffer_t *b, gid_address_t * eid);
41
42 u32
43 lisp_msg_parse_itr_rlocs (vlib_buffer_t * b, gid_address_t ** rlocs,
44                           u8 rloc_count);
45
46 #endif /* VNET_LISP_GPE_LISP_MSG_BUILDER_H_ */