forked from sysrepo/sysrepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsr_set_item_example.c
83 lines (75 loc) · 2.52 KB
/
sr_set_item_example.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**
* @file sr_set_item_example.c
* @author Rastislav Szabo <[email protected]>, Lukas Macko <[email protected]>
* @brief Example usage of sr_set_item_example function.
*
* @copyright
* Copyright 2016 Cisco Systems, Inc.
*
* 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.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include "sysrepo.h"
int
main(int argc, char **argv)
{
sr_conn_ctx_t *conn = NULL;
sr_session_ctx_t *sess = NULL;
sr_val_t value = { 0 };
int rc = SR_ERR_OK;
sr_log_stderr(SR_LL_DBG);
/* connect to sysrepo */
rc = sr_connect("app3", SR_CONN_DEFAULT, &conn);
if (SR_ERR_OK != rc) {
goto cleanup;
}
/* start session */
rc = sr_session_start(conn, SR_DS_STARTUP, SR_SESS_DEFAULT, &sess);
if (SR_ERR_OK != rc) {
goto cleanup;
}
/* create new interface named 'gigaeth0' of type 'ethernetCsmacd' */
value.type = SR_IDENTITYREF_T;
value.data.string_val = "iana-if-type:ethernetCsmacd";
rc = sr_set_item(sess, "/ietf-interfaces:interfaces/interface[name='gigaeth0']/type", &value, SR_EDIT_DEFAULT);
if (SR_ERR_OK != rc) {
printf("Error by sr_set_item: %s\n", sr_strerror(rc));
goto cleanup;
}
/* set 'prefix-length' leaf inside of the 'address' list entry with key 'fe80::ab8'
(list entry will be automatically created if it does not exist) */
value.type = SR_UINT8_T;
value.data.uint8_val = 64;
rc = sr_set_item(sess, "/ietf-interfaces:interfaces/interface[name='gigaeth0']/ietf-ip:ipv6/address[ip='fe80::ab8']/prefix-length",
&value, SR_EDIT_DEFAULT);
if (SR_ERR_OK != rc) {
printf("Error by sr_set_item: %s\n", sr_strerror(rc));
goto cleanup;
}
/* commit the changes */
rc = sr_commit(sess);
if (SR_ERR_OK != rc) {
printf("Error by sr_commit: %s\n", sr_strerror(rc));
goto cleanup;
}
cleanup:
if (NULL != sess) {
sr_session_stop(sess);
}
if (NULL != conn) {
sr_disconnect(conn);
}
return rc;
}