static int nntpdriver_logout(mailsession * session) { int r; r = newsnntp_quit(get_nntp_session(session)); return nntpdriver_nntp_error_to_mail_error(r); }
void newsnntp_free(newsnntp * f) { if (f->nntp_stream) newsnntp_quit(f); mmap_string_free(f->nntp_response_buffer); mmap_string_free(f->nntp_stream_buffer); free(f); }