blob: f21f744cb87250bdf3383b349f1be98d02506330 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* soup-queue.c: Asyncronous Callback-based HTTP Request Queue.
*
* Authors:
* Alex Graveley (alex@ximian.com)
*
* Copyright (C) 2000-2002, Ximian, Inc.
*/
#ifndef SOUP_SSL_H
#define SOUP_SSL_H 1
#include <glib.h>
typedef enum {
SOUP_SSL_TYPE_CLIENT = 0,
SOUP_SSL_TYPE_SERVER
} SoupSSLType;
GIOChannel *soup_ssl_get_iochannel (GIOChannel *sock, SoupSSLType type);
#endif /* SOUP_SSL_H */
|