forked from CESNET/libnetconf2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnc_server.h.in
36 lines (30 loc) · 827 Bytes
/
nc_server.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* @file nc_server.h
* @author Radek Krejci <[email protected]>
* @brief libnetconf2's main public header for NETCONF servers.
*
* @copyright
* Copyright (c) 2015 - 2021 CESNET, z.s.p.o.
*
* This source code is licensed under BSD 3-Clause License (the "License").
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*/
#ifndef NC_SERVER_H_
#define NC_SERVER_H_
#ifdef __cplusplus
extern "C" {
#endif
@SSH_TLS_MACRO@
#include <libnetconf2/netconf.h>
#include <libnetconf2/log.h>
#include <libnetconf2/messages_server.h>
#include <libnetconf2/server_config.h>
#include <libnetconf2/session_server.h>
#include <libnetconf2/session_server_ch.h>
#ifdef __cplusplus
}
#endif
#endif /* NC_SERVER_H_ */