blob: 262325e66afe1d69944c3583d3bba74248bed122 [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);
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif /* PYRPC_H_ */