]> git.proxmox.com Git - mirror_frr.git/blob - pceplib/test/pcep_socket_comm_test.h
doc: Add `show ipv6 rpf X:X::X:X` command to docs
[mirror_frr.git] / pceplib / test / pcep_socket_comm_test.h
1 /*
2 * This file is part of the PCEPlib, a PCEP protocol library.
3 *
4 * Copyright (C) 2020 Volta Networks https://voltanet.io/
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 *
19 * Author : Javier Garcia <javier.garcia@voltanet.io>
20 *
21 */
22
23 /*
24 * Timer definitions to be used internally by the pcep_timers library.
25 */
26
27 #ifndef PCEP_SOCKET_COMM_TEST_H_
28 #define PCEP_SOCKET_COMM_TEST_H_
29
30 void pcep_socket_comm_test_teardown(void);
31 void pcep_socket_comm_test_setup(void);
32 void test_pcep_socket_comm_initialize(void);
33 void test_pcep_socket_comm_initialize_ipv6(void);
34 void test_pcep_socket_comm_initialize_with_src(void);
35 void test_pcep_socket_comm_initialize_with_src_ipv6(void);
36 void test_pcep_socket_comm_initialize_tcpmd5(void);
37 void test_pcep_socket_comm_initialize_ipv6_tcpmd5(void);
38 void test_pcep_socket_comm_initialize_handlers(void);
39 void test_pcep_socket_comm_session_not_initialized(void);
40 void test_pcep_socket_comm_session_destroy(void);
41
42 #endif