libnetconf2
3.5.1
NETCONF server and client library in C.
|
libnetconf2's public functions and structures of NETCONF client messages. More...
Go to the source code of this file.
Data Structures | |
struct | nc_err |
NETCONF error structure representation. More... | |
Functions | |
struct nc_rpc * | nc_rpc_act_generic (const struct lyd_node *data, NC_PARAMTYPE paramtype) |
Create a generic NETCONF RPC or action. More... | |
struct nc_rpc * | nc_rpc_act_generic_xml (const char *xml_str, NC_PARAMTYPE paramtype) |
Create a generic NETCONF RPC or action from an XML string. More... | |
struct nc_rpc * | nc_rpc_cancel (const char *persist_id, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <cancel-commit> More... | |
struct nc_rpc * | nc_rpc_commit (int confirmed, uint32_t confirm_timeout, const char *persist, const char *persist_id, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <commit> More... | |
struct nc_rpc * | nc_rpc_copy (NC_DATASTORE target, const char *url_trg, NC_DATASTORE source, const char *url_or_config_src, NC_WD_MODE wd_mode, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <copy-config> More... | |
struct nc_rpc * | nc_rpc_delete (NC_DATASTORE target, const char *url, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <delete-config> More... | |
struct nc_rpc * | nc_rpc_deletesub (uint32_t id) |
Create NETCONF RPC <delete-subscription> More... | |
struct nc_rpc * | nc_rpc_discard (void) |
Create NETCONF RPC <discard-changes> More... | |
struct nc_rpc * | nc_rpc_edit (NC_DATASTORE target, NC_RPC_EDIT_DFLTOP default_op, NC_RPC_EDIT_TESTOPT test_opt, NC_RPC_EDIT_ERROPT error_opt, const char *edit_content, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <edit-config> More... | |
struct nc_rpc * | nc_rpc_editdata (const char *datastore, NC_RPC_EDIT_DFLTOP default_op, const char *edit_content, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <get-data> More... | |
struct nc_rpc * | nc_rpc_establishpush_onchange (const char *datastore, const char *filter, const char *stop_time, const char *encoding, uint32_t dampening_period, int sync_on_start, const char **excluded_change, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <establish-subscription> with augments from ietf-yang-push for an on-change subscription. More... | |
struct nc_rpc * | nc_rpc_establishpush_periodic (const char *datastore, const char *filter, const char *stop_time, const char *encoding, uint32_t period, const char *anchor_time, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <establish-subscription> with augments from ietf-yang-push for a periodic subscription. More... | |
struct nc_rpc * | nc_rpc_establishsub (const char *filter, const char *stream_name, const char *start_time, const char *stop_time, const char *encoding, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <establish-subscription> More... | |
void | nc_rpc_free (struct nc_rpc *rpc) |
Free the NETCONF RPC object. More... | |
struct nc_rpc * | nc_rpc_get (const char *filter, NC_WD_MODE wd_mode, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <get> More... | |
NC_RPC_TYPE | nc_rpc_get_type (const struct nc_rpc *rpc) |
Get the type of the RPC. More... | |
struct nc_rpc * | nc_rpc_getconfig (NC_DATASTORE source, const char *filter, NC_WD_MODE wd_mode, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <get-config> More... | |
struct nc_rpc * | nc_rpc_getdata (const char *datastore, const char *filter, const char *config_filter, char **origin_filter, int origin_filter_count, int neg_origin_filter, uint16_t max_depth, int with_origin, NC_WD_MODE wd_mode, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <get-data> More... | |
struct nc_rpc * | nc_rpc_getschema (const char *identifier, const char *version, const char *format, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <get-schema> More... | |
struct nc_rpc * | nc_rpc_kill (uint32_t session_id) |
Create NETCONF RPC <kill-session> More... | |
struct nc_rpc * | nc_rpc_killsub (uint32_t id) |
Create NETCONF RPC <kill-subscription> More... | |
struct nc_rpc * | nc_rpc_lock (NC_DATASTORE target) |
Create NETCONF RPC <lock> More... | |
struct nc_rpc * | nc_rpc_modifypush_onchange (uint32_t id, const char *datastore, const char *filter, const char *stop_time, uint32_t dampening_period, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <modify-subscription> with augments from ietf-yang-push for an on-change subscription. More... | |
struct nc_rpc * | nc_rpc_modifypush_periodic (uint32_t id, const char *datastore, const char *filter, const char *stop_time, uint32_t period, const char *anchor_time, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <modify-subscription> with augments from ietf-yang-push for a periodic subscription. More... | |
struct nc_rpc * | nc_rpc_modifysub (uint32_t id, const char *filter, const char *stop_time, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <modify-subscription> More... | |
struct nc_rpc * | nc_rpc_resyncsub (uint32_t id) |
Create NETCONF RPC <resync-subscription> More... | |
struct nc_rpc * | nc_rpc_subscribe (const char *stream_name, const char *filter, const char *start_time, const char *stop_time, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <create-subscription> More... | |
struct nc_rpc * | nc_rpc_unlock (NC_DATASTORE target) |
Create NETCONF RPC <unlock> More... | |
struct nc_rpc * | nc_rpc_validate (NC_DATASTORE source, const char *url_or_config, NC_PARAMTYPE paramtype) |
Create NETCONF RPC <validate> More... | |
libnetconf2's public functions and structures of NETCONF client messages.
This source code is licensed under BSD 3-Clause License (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at
https://opensource.org/licenses/BSD-3-Clause
Definition in file messages_client.h.