loudmouth/lm-ssl-internals.h
author Frank Zschockelt <lm@freakysoft.de>
Thu, 04 Feb 2016 19:18:03 +0100
changeset 690 7ccf2113ec5f
parent 664 f57b1b61e1fe
permissions -rw-r--r--
Update the postal address of the FSF

/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * Copyright (C) 2003-2006 Imendio AB
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, see <https://www.gnu.org/licenses>
 */

#ifndef __LM_SSL_INTERNALS_H__
#define __LM_SSL_INTERNALS_H__

#include <glib.h>

LmSSLResponse   _lm_ssl_func_always_continue (LmSSL       *ssl,
                                              LmSSLStatus  status,
                                              gpointer     user_data);
LmSSL *          _lm_ssl_new              (const gchar    *expected_fingerprint,
                                           LmSSLFunction   ssl_function,
                                           gpointer        user_data,
                                           GDestroyNotify  notify);

void             _lm_ssl_initialize       (LmSSL            *ssl);
gboolean         _lm_ssl_set_ca           (LmSSL            *ssl,
                                           const gchar    *ca_path);
gboolean         _lm_ssl_begin            (LmSSL            *ssl,
                                           gint              fd,
                                           const gchar      *server,
                                           GError          **error);
GIOStatus        _lm_ssl_read             (LmSSL            *ssl,
                                           gchar            *buf,
                                           gint              len,
                                           gsize             *bytes_read);
gint             _lm_ssl_send             (LmSSL            *ssl,
                                           const gchar      *str,
                                           gint              len);
void             _lm_ssl_close            (LmSSL            *ssl);
void             _lm_ssl_free             (LmSSL            *ssl);

#endif /* __LM_SSL_INTERNALS_H__ */