28 #ifndef _GVM_SERVERUTILS_H 29 #define _GVM_SERVERUTILS_H 32 #include <gnutls/gnutls.h> 34 #include <sys/param.h> 36 #include <netinet/in.h> 38 #include <netinet/ip.h> 73 const char *,
const char *,
int);
77 const char *,
const char *);
87 __attribute__ ((format (printf, 2, 3)));
108 gvm_server_new (
unsigned int, gchar *, gchar *, gchar *, gnutls_session_t *,
109 gnutls_certificate_credentials_t *);
113 gnutls_session_t *, gnutls_certificate_credentials_t *);
116 gvm_server_free (
int, gnutls_session_t, gnutls_certificate_credentials_t);
119 gnutls_certificate_credentials_t);
int set_gnutls_dhparams(gnutls_certificate_credentials_t, const char *)
Set a gnutls session's Diffie-Hellman parameters.
Definition: serverutils.c:1239
int gvm_server_new(unsigned int, gchar *, gchar *, gchar *, gnutls_session_t *, gnutls_certificate_credentials_t *)
Make a session for connecting to a server.
Definition: serverutils.c:1155
int gvm_server_sendf(gnutls_session_t *, const char *,...) __attribute__((format(printf
gchar * priv_key
The private key.
Definition: serverutils.h:57
gchar * pub_key
The public key.
Definition: serverutils.h:56
gchar * host_string
Server host string.
Definition: serverutils.h:51
int gvm_connection_sendf_xml_quiet(gvm_connection_t *, const char *,...)
Format and send an XML string to the server.
Definition: serverutils.c:981
gnutls_session_t session
Session.
Definition: serverutils.h:47
void gvm_connection_close(gvm_connection_t *)
Close a server connection and its socket.
Definition: serverutils.c:520
int gvm_server_sendf_xml_quiet(gnutls_session_t *, const char *,...)
Format and send an XML string to the server.
Definition: serverutils.c:954
int gvm_server_open_with_cert(gnutls_session_t *, const char *, int, const char *, const char *, const char *)
Connect to the server using a given host, port and cert.
Definition: serverutils.c:475
int socket
Socket.
Definition: serverutils.h:46
gchar * username
Username with which to connect.
Definition: serverutils.h:49
int gvm_server_sendf_xml(gnutls_session_t *, const char *,...)
Format and send an XML string to the server.
Definition: serverutils.c:902
int gvm_server_attach(int, gnutls_session_t *)
Attach a socket to a session, and shake hands with the peer.
Definition: serverutils.c:585
int gvm_server_open(gnutls_session_t *, const char *, int)
Connect to the server using a given host and port.
Definition: serverutils.c:493
gint port
Port of server.
Definition: serverutils.h:53
gchar * ca_cert
CA certificate.
Definition: serverutils.h:55
int gvm_server_new_mem(unsigned int, const char *, const char *, const char *, gnutls_session_t *, gnutls_certificate_credentials_t *)
Make a session for connecting to a server, with certificates stored in memory.
Definition: serverutils.c:1177
void gvm_connection_free(gvm_connection_t *)
Free connection.
Definition: serverutils.c:111
int gvm_connection_sendf_xml(gvm_connection_t *, const char *,...)
Format and send an XML string to the server.
Definition: serverutils.c:927
int gvm_socket_vsendf(int, const char *, va_list)
Send a string to the server.
Definition: serverutils.c:758
gchar * password
Password for user with which to connect.
Definition: serverutils.h:50
int gvm_server_verify(gnutls_session_t)
Verify certificate.
Definition: serverutils.c:130
int gvm_connection_sendf(gvm_connection_t *, const char *,...)
Format and send a string to the server.
Definition: serverutils.c:839
int gvm_server_close(int, gnutls_session_t)
Close a server connection and its socket.
Definition: serverutils.c:507
gchar * port_string
Server port string.
Definition: serverutils.h:52
void unload_gnutls_file(gnutls_datum_t *)
Unloads a gnutls_datum_t struct's data.
Definition: serverutils.c:208
int gvm_server_open_verify(gnutls_session_t *, const char *, int, const char *, const char *, const char *, int)
Connect to the server using a given host, port and cert.
Definition: serverutils.c:327
gboolean use_certs
Whether to use certs.
Definition: serverutils.h:54
Connection.
Definition: serverutils.h:43
int tls
Whether uses TCP-TLS (vs UNIX socket).
Definition: serverutils.h:45
int gvm_server_session_free(gnutls_session_t, gnutls_certificate_credentials_t)
int load_gnutls_file(const char *, gnutls_datum_t *)
Loads a file's data into gnutls_datum_t struct.
Definition: serverutils.c:180
int int gvm_server_vsendf(gnutls_session_t *, const char *, va_list)
Send a string to the server.
Definition: serverutils.c:743
gnutls_certificate_credentials_t credentials
Credentials.
Definition: serverutils.h:48
int gvm_server_free(int, gnutls_session_t, gnutls_certificate_credentials_t)
Cleanup a server session.
Definition: serverutils.c:1273