blob: 9eb95da29dd6256d25c416796732f8683b4d45ae [file] [log] [blame]
Radek Krejcie0854c02017-10-10 21:11:29 +02001/**
2 * @file rpc.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief RPC functions for the Session object
5 *
6 * Copyright (c) 2017 CESNET, z.s.p.o.
7 *
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
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef PYRPC_H_
16#define PYRPC_H_
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22PyObject *ncRPCGet(ncSSHObject *self, PyObject *args, PyObject *keywords);
23PyObject *ncRPCGetConfig(ncSSHObject *self, PyObject *args, PyObject *keywords);
Radek Krejcib0bf24c2018-02-07 16:40:27 +010024PyObject *ncRPCEditConfig(ncSSHObject *self, PyObject *args, PyObject *keywords);
Radek Krejcie0854c02017-10-10 21:11:29 +020025
26#ifdef __cplusplus
27}
28#endif
29
30#endif /* PYRPC_H_ */