95 lines
3.4 KiB
C
95 lines
3.4 KiB
C
/*
|
|
*
|
|
***** BEGIN LICENSE BLOCK *****
|
|
|
|
Copyright (C) 2009-2016 Olof Hagsand and Benny Holmgren
|
|
Copyright (C) 2017-2019 Olof Hagsand
|
|
Copyright (C) 2020-2022 Olof Hagsand and Rubicon Communications, LLC(Netgate)
|
|
|
|
This file is part of CLIXON.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
Alternatively, the contents of this file may be used under the terms of
|
|
the GNU General Public License Version 3 or later (the "GPL"),
|
|
in which case the provisions of the GPL are applicable instead
|
|
of those above. If you wish to allow use of your version of this file only
|
|
under the terms of the GPL, and not to allow others to
|
|
use your version of this file under the terms of Apache License version 2,
|
|
indicate your decision by deleting the provisions above and replace them with
|
|
the notice and other provisions required by the GPL. If you do not delete
|
|
the provisions above, a recipient may use your version of this file under
|
|
the terms of any one of the Apache License version 2 or the GPL.
|
|
|
|
***** END LICENSE BLOCK *****
|
|
|
|
*
|
|
* Protocol to communicate with CLICON config daemon
|
|
*/
|
|
|
|
#ifndef _CLIXON_PROTO_H_
|
|
#define _CLIXON_PROTO_H_
|
|
|
|
/*
|
|
* Types
|
|
*/
|
|
|
|
/* Protocol message header */
|
|
struct clicon_msg {
|
|
uint32_t op_len; /* length of whole message: body+header, network byte order. */
|
|
uint32_t op_id; /* session-id. network byte order. 1..max(u32), can be zero in client hello */
|
|
char op_body[0]; /* rest of message, actual data */
|
|
};
|
|
|
|
/*
|
|
* Prototypes
|
|
*/
|
|
char *format_int2str(enum format_enum showas);
|
|
enum format_enum format_str2int(char *str);
|
|
|
|
struct clicon_msg *clicon_msg_encode(uint32_t id, const char *format, ...) __attribute__ ((format (printf, 2, 3)));
|
|
int clicon_msg_decode(struct clicon_msg *msg, yang_stmt *yspec, uint32_t *id, cxobj **xml, cxobj **xerr);
|
|
|
|
int clicon_connect_unix(clicon_handle h, char *sockpath);
|
|
|
|
|
|
int clicon_rpc_connect_unix(clicon_handle h,
|
|
char *sockpath,
|
|
int *sock0);
|
|
|
|
int clicon_rpc_connect_inet(clicon_handle h,
|
|
char *dst,
|
|
uint16_t port,
|
|
int *sock0);
|
|
|
|
int clicon_rpc(int sock, struct clicon_msg *msg, char **xret, int *eof);
|
|
|
|
int clicon_rpc1(int sock, cbuf *msgin, cbuf *msgret, int *eof);
|
|
|
|
int clicon_msg_send(int s, struct clicon_msg *msg);
|
|
|
|
int clicon_msg_send1(int s, cbuf *cb);
|
|
|
|
int clicon_msg_rcv(int s, struct clicon_msg **msg, int *eof);
|
|
|
|
int clicon_msg_rcv1(int s, cbuf *cb, int *eof);
|
|
|
|
int send_msg_notify_xml(clicon_handle h, int s, cxobj *xev);
|
|
|
|
int send_msg_reply(int s, char *data, uint32_t datalen);
|
|
|
|
int detect_endtag(char *tag, char ch, int *state);
|
|
|
|
int clixon_inet2sin(const char *addrtype, const char *addrstr, uint16_t port, struct sockaddr *sa, size_t *sa_len);
|
|
|
|
#endif /* _CLIXON_PROTO_H_ */
|