blob: 5d954396d1bce2fcffd10fe5571e97da931ef4f1 [file] [log] [blame]
Radek Krejci5da708a2015-09-01 17:33:23 +02001/**
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 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * 3. Neither the name of the Company nor the names of its contributors
18 * may be used to endorse or promote products derived from this
19 * software without specific prior written permission.
20 *
21 */
22
23#ifndef NC_CLIENT_H_
24#define NC_CLIENT_H_
25
Michal Vasko086311b2016-01-08 09:53:11 +010026@SSH_MACRO@
Michal Vasko1128e112015-10-26 15:34:24 +010027@TLS_MACRO@
28
Radek Krejcid0d19522015-09-02 13:49:25 +020029#include <libnetconf2/netconf.h>
Radek Krejci5da708a2015-09-01 17:33:23 +020030#include <libnetconf2/log.h>
Radek Krejci695d4fa2015-10-22 13:23:54 +020031#include <libnetconf2/messages.h>
Michal Vasko086311b2016-01-08 09:53:11 +010032#include <libnetconf2/session_client.h>
Radek Krejci5da708a2015-09-01 17:33:23 +020033
34#endif /* NC_CLIENT_H_ */