Radek Krejci | 5da708a | 2015-09-01 17:33:23 +0200 | [diff] [blame] | 1 | /** |
| 2 | * \file nc_client.h |
| 3 | * \author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * \brief libnetconf2's main public header for NETCONF clients. |
| 5 | * |
| 6 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 7 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame^] | 11 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | 5da708a | 2015-09-01 17:33:23 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef NC_CLIENT_H_ |
| 16 | #define NC_CLIENT_H_ |
| 17 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 18 | @SSH_MACRO@ |
Michal Vasko | 1128e11 | 2015-10-26 15:34:24 +0100 | [diff] [blame] | 19 | @TLS_MACRO@ |
| 20 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame^] | 21 | #ifdef __cplusplus |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 25 | #include <libnetconf2/netconf.h> |
Radek Krejci | 5da708a | 2015-09-01 17:33:23 +0200 | [diff] [blame] | 26 | #include <libnetconf2/log.h> |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 27 | #include <libnetconf2/messages_client.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 28 | #include <libnetconf2/session_client.h> |
Michal Vasko | 45f298f | 2016-01-29 10:26:26 +0100 | [diff] [blame] | 29 | #include <libnetconf2/session_client_ch.h> |
Radek Krejci | 5da708a | 2015-09-01 17:33:23 +0200 | [diff] [blame] | 30 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame^] | 31 | #ifdef __cplusplus |
| 32 | } |
| 33 | #endif |
| 34 | |
Radek Krejci | 5da708a | 2015-09-01 17:33:23 +0200 | [diff] [blame] | 35 | #endif /* NC_CLIENT_H_ */ |