* * Changed session-id handing. Instead of using pid of peer process, a proper session id generated by the server is used, following RFC6241.
97 lines
3.1 KiB
C
97 lines
3.1 KiB
C
/*
|
|
*
|
|
***** BEGIN LICENSE BLOCK *****
|
|
|
|
Copyright (C) 2009-2019 Olof Hagsand and Benny Holmgren
|
|
|
|
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
|
|
*/
|
|
enum format_enum{
|
|
FORMAT_XML,
|
|
FORMAT_JSON,
|
|
FORMAT_TEXT,
|
|
FORMAT_CLI,
|
|
FORMAT_NETCONF
|
|
};
|
|
|
|
/* Protocol message header */
|
|
struct clicon_msg {
|
|
uint32_t op_len; /* length of message. network byte order. */
|
|
uint32_t op_id; /* session-id. network byte order. */
|
|
char op_body[0]; /* rest of message, actual data */
|
|
};
|
|
|
|
/*
|
|
* Prototypes
|
|
*/
|
|
char *format_int2str(enum format_enum showas);
|
|
enum format_enum format_str2int(char *str);
|
|
|
|
#if defined(__GNUC__) && __GNUC__ >= 3
|
|
struct clicon_msg *clicon_msg_encode(uint32_t id, char *format, ...) __attribute__ ((format (printf, 2, 3)));
|
|
#else
|
|
struct clicon_msg *clicon_msg_encode(uint32_t id, char *format, ...);
|
|
#endif
|
|
int clicon_msg_decode(struct clicon_msg *msg, yang_stmt *yspec, uint32_t *id, cxobj **xml);
|
|
|
|
int clicon_connect_unix(char *sockpath);
|
|
|
|
int clicon_rpc_connect_unix(struct clicon_msg *msg,
|
|
char *sockpath,
|
|
char **ret,
|
|
int *sock0);
|
|
|
|
int clicon_rpc_connect_inet(struct clicon_msg *msg,
|
|
char *dst,
|
|
uint16_t port,
|
|
char **ret,
|
|
int *sock0);
|
|
|
|
int clicon_rpc(int s, struct clicon_msg *msg, char **xret);
|
|
|
|
int clicon_msg_send(int s, struct clicon_msg *msg);
|
|
|
|
int clicon_msg_rcv(int s, struct clicon_msg **msg, 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);
|
|
|
|
#endif /* _CLIXON_PROTO_H_ */
|