gnutls_transport_set_pull_function (3) Linux Manual Page
gnutls_transport_set_pull_function – API function Synopsis#include <gnutls/gnutls.h> void gnutls_transport_set_pull_function(gnutls_session_t session, gnutls_pull_func pull_func); Argumentsgnutls_session_t session is a gnutls_session_t structure. gnutls_pull_func pull_func a callback function similar to read()DescriptionThis is the function where you set a function for gnutls to receive data. Normally, if you use berkeley style sockets, do not need to use this function since the default…
