2008-04-24 01:42:53 +00:00
|
|
|
/*
|
2010-01-04 21:00:47 +00:00
|
|
|
* This file Copyright (C) 2008-2010 Mnemosyne LLC
|
2008-04-24 01:42:53 +00:00
|
|
|
*
|
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2008-09-23 19:11:04 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2008-04-24 01:42:53 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
2008-04-25 19:46:36 +00:00
|
|
|
* $Id$
|
2008-04-24 01:42:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TR_HTTP_H
|
|
|
|
#define TR_HTTP_H
|
|
|
|
|
2009-10-23 03:41:36 +00:00
|
|
|
struct tr_address;
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2010-03-06 15:05:05 +00:00
|
|
|
void tr_webInit( tr_session * session );
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2010-03-06 15:05:05 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TR_WEB_CLOSE_WHEN_IDLE,
|
|
|
|
TR_WEB_CLOSE_NOW
|
|
|
|
}
|
|
|
|
tr_web_close_mode;
|
2008-04-25 19:46:36 +00:00
|
|
|
|
2010-03-06 15:05:05 +00:00
|
|
|
void tr_webClose( tr_session * session, tr_web_close_mode close_mode );
|
|
|
|
|
|
|
|
void tr_webSetInterface( tr_session * session, const struct tr_address * addr );
|
2009-10-23 05:48:56 +00:00
|
|
|
|
2008-12-14 11:21:11 +00:00
|
|
|
typedef void ( tr_web_done_func )( tr_session * session,
|
2008-09-23 19:11:04 +00:00
|
|
|
long response_code,
|
2008-12-14 11:21:11 +00:00
|
|
|
const void * response,
|
2008-09-23 19:11:04 +00:00
|
|
|
size_t response_byte_count,
|
2008-12-14 11:21:11 +00:00
|
|
|
void * user_data );
|
2008-04-25 04:26:04 +00:00
|
|
|
|
|
|
|
const char * tr_webGetResponseStr( long response_code );
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2008-12-14 11:21:11 +00:00
|
|
|
void tr_webRun( tr_session * session,
|
|
|
|
const char * url,
|
|
|
|
const char * range,
|
|
|
|
tr_web_done_func done_func,
|
|
|
|
void * done_func_user_data );
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2009-11-11 01:03:06 +00:00
|
|
|
struct evbuffer;
|
|
|
|
|
2009-11-29 08:05:47 +00:00
|
|
|
void tr_http_escape( struct evbuffer *out, const char *str, int len, tr_bool escape_slashes );
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2009-11-20 04:38:19 +00:00
|
|
|
char* tr_http_unescape( const char * str, int len );
|
|
|
|
|
2008-04-24 01:42:53 +00:00
|
|
|
#endif
|