libnetconf2  3.0.17
NETCONF server and client library in C.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
session_client_ch.h
Go to the documentation of this file.
1 
16 #ifndef NC_SESSION_CLIENT_CH_H_
17 #define NC_SESSION_CLIENT_CH_H_
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 #include <libyang/libyang.h>
24 
25 #ifdef NC_ENABLED_SSH_TLS
26 # include <libssh/libssh.h>
27 #endif /* NC_ENABLED_SSH_TLS */
28 
29 #include "messages_client.h"
30 #include "netconf.h"
31 #include "session.h"
32 
33 #ifdef NC_ENABLED_SSH_TLS
34 
54 int nc_accept_callhome(int timeout, struct ly_ctx *ctx, struct nc_session **session);
55 
77 void nc_client_ssh_ch_set_auth_password_clb(char *(*auth_password)(const char *username, const char *hostname, void *priv),
78  void *priv);
79 
87 void nc_client_ssh_ch_get_auth_password_clb(char *(**auth_password)(const char *username, const char *hostname, void *priv),
88  void **priv);
89 
101 void nc_client_ssh_ch_set_auth_interactive_clb(char *(*auth_interactive)(const char *auth_name, const char *instruction,
102  const char *prompt, int echo, void *priv),
103  void *priv);
104 
112 void nc_client_ssh_ch_get_auth_interactive_clb(char *(**auth_interactive)(const char *auth_name, const char *instruction,
113  const char *prompt, int echo, void *priv),
114  void **priv);
115 
127 void nc_client_ssh_ch_set_auth_privkey_passphrase_clb(char *(*auth_privkey_passphrase)(const char *privkey_path, void *priv),
128  void *priv);
129 
137 void nc_client_ssh_ch_get_auth_privkey_passphrase_clb(char *(**auth_privkey_passphrase)(const char *privkey_path, void *priv),
138  void **priv);
139 
147 int nc_client_ssh_ch_add_bind_listen(const char *address, uint16_t port);
148 
156 int nc_client_ssh_ch_del_bind(const char *address, uint16_t port);
157 
167 int nc_client_ssh_ch_add_keypair(const char *pub_key, const char *priv_key);
168 
175 int nc_client_ssh_ch_del_keypair(int idx);
176 
183 
192 int nc_client_ssh_ch_get_keypair(int idx, const char **pub_key, const char **priv_key);
193 
205 void nc_client_ssh_ch_set_auth_pref(NC_SSH_AUTH_TYPE auth_type, int16_t pref);
206 
214 
221 int nc_client_ssh_ch_set_username(const char *username);
222 
228 const char *nc_client_ssh_ch_get_username(void);
229 
247 int nc_client_tls_ch_add_bind_listen(const char *address, uint16_t port);
248 
257 int nc_client_tls_ch_add_bind_hostname_listen(const char *address, uint16_t port, const char *hostname);
258 
266 int nc_client_tls_ch_del_bind(const char *address, uint16_t port);
267 
276 int nc_client_tls_ch_set_cert_key_paths(const char *client_cert, const char *client_key);
277 
284 void nc_client_tls_ch_get_cert_key_paths(const char **client_cert, const char **client_key);
285 
295 int nc_client_tls_ch_set_trusted_ca_paths(const char *ca_file, const char *ca_dir);
296 
303 void nc_client_tls_ch_get_trusted_ca_paths(const char **ca_file, const char **ca_dir);
304 
312 int nc_client_tls_ch_set_crl_paths(const char *crl_file, const char *crl_dir);
313 
320 void nc_client_tls_ch_get_crl_paths(const char **crl_file, const char **crl_dir);
321 
324 #endif /* NC_ENABLED_SSH_TLS */
325 
326 #ifdef __cplusplus
327 }
328 #endif
329 
330 #endif /* NC_SESSION_CLIENT_CH_H_ */
int nc_client_tls_ch_add_bind_listen(const char *address, uint16_t port)
Add a new client bind and start listening on it for TLS Call Home connections.
int nc_client_ssh_ch_del_keypair(int idx)
Remove an SSH public and private key pair that was used for Call Home client authentication.
void nc_client_ssh_ch_set_auth_pref(NC_SSH_AUTH_TYPE auth_type, int16_t pref)
Set SSH Call Home authentication method preference.
NC_SSH_AUTH_TYPE
Enumeration of NETCONF SSH authentication methods.
Definition: session.h:31
void nc_client_ssh_ch_get_auth_password_clb(char *(**auth_password)(const char *username, const char *hostname, void *priv), void **priv)
Get currently set SSH Call Home password authentication callback and its private data previously set ...
libnetconf2&#39;s public functions and structures of NETCONF client messages.
libnetconf2 session manipulation
const char * nc_client_ssh_ch_get_username(void)
Get client Call Home SSH username used for authentication.
int nc_client_ssh_ch_add_keypair(const char *pub_key, const char *priv_key)
Add an SSH public and private key pair to be used for Call Home client authentication.
int16_t nc_client_ssh_ch_get_auth_pref(NC_SSH_AUTH_TYPE auth_type)
Get SSH Call Home authentication method preference.
void nc_client_ssh_ch_get_auth_interactive_clb(char *(**auth_interactive)(const char *auth_name, const char *instruction, const char *prompt, int echo, void *priv), void **priv)
Get currently set SSH Call Home interactive authentication callback and its private data previously s...
int nc_client_ssh_ch_get_keypair_count(void)
Get the number of public an private key pairs set to be used for Call Home client authentication...
int nc_client_tls_ch_set_crl_paths(const char *crl_file, const char *crl_dir)
Set client Call Home Certificate Revocation Lists.
int nc_client_tls_ch_del_bind(const char *address, uint16_t port)
Remove a TLS listening client bind.
int nc_client_tls_ch_set_trusted_ca_paths(const char *ca_file, const char *ca_dir)
Set client Call Home trusted CA certificates.
void nc_client_ssh_ch_set_auth_interactive_clb(char *(*auth_interactive)(const char *auth_name, const char *instruction, const char *prompt, int echo, void *priv), void *priv)
Set SSH Call Home interactive authentication callback.
int nc_client_ssh_ch_del_bind(const char *address, uint16_t port)
Remove an SSH listening client bind.
int nc_client_ssh_ch_add_bind_listen(const char *address, uint16_t port)
Add a new client bind and start listening on it for SSH Call Home connections.
int nc_client_ssh_ch_set_username(const char *username)
Set client Call Home SSH username used for authentication.
void nc_client_tls_ch_get_crl_paths(const char **crl_file, const char **crl_dir)
Get client Call Home Certificate Revocation Lists.
void nc_client_tls_ch_get_trusted_ca_paths(const char **ca_file, const char **ca_dir)
Get client Call Home trusted CA certificates.
int nc_client_ssh_ch_get_keypair(int idx, const char **pub_key, const char **priv_key)
Get a specific keypair set to be used for Call Home client authentication.
int nc_client_tls_ch_add_bind_hostname_listen(const char *address, uint16_t port, const char *hostname)
Add a new client bind and start listening on it for TLS Call Home connections coming from the specifi...
void nc_client_ssh_ch_set_auth_privkey_passphrase_clb(char *(*auth_privkey_passphrase)(const char *privkey_path, void *priv), void *priv)
Set SSH Call Home publickey authentication encrypted private key passphrase callback.
int nc_accept_callhome(int timeout, struct ly_ctx *ctx, struct nc_session **session)
Accept a Call Home connection on any of the listening binds.
void nc_client_ssh_ch_get_auth_privkey_passphrase_clb(char *(**auth_privkey_passphrase)(const char *privkey_path, void *priv), void **priv)
Get currently set SSH Call Home publickey authentication encrypted private key passphrase callback an...
libnetconf2&#39;s general public functions and structures definitions.
int nc_client_tls_ch_set_cert_key_paths(const char *client_cert, const char *client_key)
Set client Call Home authentication identity - a certificate and a private key.
void nc_client_tls_ch_get_cert_key_paths(const char **client_cert, const char **client_key)
Get client Call Home authentication identity - a certificate and a private key.
void nc_client_ssh_ch_set_auth_password_clb(char *(*auth_password)(const char *username, const char *hostname, void *priv), void *priv)
Set SSH Call Home password authentication callback.