loudmouth/lm-ssl-internals.h
author Till Maas <opensource@till.name>
Sat, 31 Oct 2015 08:37:51 +0100
changeset 664 f57b1b61e1fe
parent 651 2990ee03cfa3
child 690 7ccf2113ec5f
permissions -rw-r--r--
Remove trailing whitespace and mixed indenting

/* -*- 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, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#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__ */