libnetconf2
libnetconf2 copied to clipboard
C NETCONF library
Hi, I am using devel branch "81916c6 (HEAD -> devel, origin/devel) VERSION bump to version 2.0.8" for libnetconf2 "fd7603e4 (HEAD -> devel, origin/devel) VERSION bump to version 2.0.30" for libyang...
The NETCONF service runs on port 830, and the client connects to the NETCONF server. At this time, the server reports the following error: [2021/07/06 08:24:20.704879, 4] ssh_pki_import_privkey_base64: Trying to...
Would it be possible to also display the requestor's IP address? The following code shows `Accepted a connection on 0.0.0.0:830.` in the logs: https://github.com/CESNET/libnetconf2/blob/697729e41ef4463d59eea98517b48f79d693c847/src/session_server.c#L515 I think it would be useful...
Hi! I am using libnetconf2, version 1.1.36, and I am setting a callback (by nc_set_print_clb()) where I save every message in some files. In my project, a client can connect...
Hi, How can we change default log level for libnetconf2? Thanks and Regards, Chinmaya Agarwal.
while connecting to the callhome,the controller is failing(segmentation fault)--core dumped, running in gdb i'm getting this trace back:: 0x00007ffff532faa8 in build_schema_info_yl (session=0x7fffc801c890, result=0x7ffff33da6f0) at /root/rohit3/libnetconf2/src/session_client.c:740 740 **if (iter->schema->module != mod)...
Hi, There seems to be a memory leak in nc_connect_ssh. I ran our application over a few days with valgrind enabled and I see this error show up in the...
When running valgrind the following memory leak hit is given: ``` ==2277== 24 bytes in 1 blocks are still reachable in loss record 577 of 2,272 ==2277== at 0x4CA3E26: malloc...
When running a libnetconf2 application with valgrind several memory leaks are shown when using OpenSSL with zlib. There are a number of hits typically as below: ``` ==2277== 2 bytes...
In function nc_server_ch_client_thread_session_cond_wait() ```C /* CH LOCK */ pthread_mutex_lock(&session->opts.server.ch_lock); /* give the session to the user */ data->session_clb(data->client_name, session); ``` In data->session_clb, if the sysrepo session fails to start, nc_session_free()...