Qt/Sout: pass the ttl from the UI to the MRL
[vlc/asuraparaju-public.git] / include / vlc_http.h
blobff4971864878d9a174cb086007ad2002cd762a3f
1 /*****************************************************************************
2 * vlc_http.h: Shared code for HTTP clients
3 *****************************************************************************
4 * Copyright (C) 2001-2008 the VideoLAN team
5 * $Id$
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8 * Christophe Massiot <massiot@via.ecp.fr>
9 * RĂ©mi Denis-Courmont <rem # videolan.org>
10 * Antoine Cellerier <dionoea at videolan dot org>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25 *****************************************************************************/
27 #ifndef VLC_HTTP_H
28 #define VLC_HTTP_H 1
30 /**
31 * \file
32 * This file defines functions, structures, enums and macros shared between
33 * HTTP clients.
36 /* RFC 2617: Basic and Digest Access Authentication */
37 typedef struct http_auth_t
39 char *psz_realm;
40 char *psz_domain;
41 char *psz_nonce;
42 char *psz_opaque;
43 char *psz_stale;
44 char *psz_algorithm;
45 char *psz_qop;
46 int i_nonce;
47 char *psz_cnonce;
48 char *psz_HA1; /* stored H(A1) value if algorithm = "MD5-sess" */
49 } http_auth_t;
52 VLC_EXPORT( void, http_auth_Init, ( http_auth_t * ) );
53 VLC_EXPORT( void, http_auth_Reset, ( http_auth_t * ) );
54 VLC_EXPORT( void, http_auth_ParseWwwAuthenticateHeader,
55 ( vlc_object_t *, http_auth_t * ,
56 const char * ) );
57 VLC_EXPORT( int, http_auth_ParseAuthenticationInfoHeader,
58 ( vlc_object_t *, http_auth_t *,
59 const char *, const char *,
60 const char *, const char *,
61 const char * ) );
62 VLC_EXPORT( char *, http_auth_FormatAuthorizationHeader,
63 ( vlc_object_t *, http_auth_t *,
64 const char *, const char *,
65 const char *, const char * ) LIBVLC_USED );
67 #endif /* VLC_HTTP_H */