summaryrefslogtreecommitdiff
path: root/camel/camel-http-stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-http-stream.h')
-rw-r--r--camel/camel-http-stream.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/camel-http-stream.h b/camel/camel-http-stream.h
index 40733662e..41a82d0de 100644
--- a/camel/camel-http-stream.h
+++ b/camel/camel-http-stream.h
@@ -31,7 +31,6 @@ extern "C" {
#include <camel/camel-mime-parser.h>
#include <camel/camel-mime-utils.h>
-#include <camel/camel-service.h>
#include <camel/camel-stream.h>
#include <camel/camel-url.h>
@@ -63,7 +62,7 @@ struct _CamelHttpStream {
struct _header_raw *headers;
CamelHttpMethod method;
- CamelService *service;
+ struct _CamelSession *session;
CamelURL *url;
char *user_agent;
@@ -76,6 +75,7 @@ struct _CamelHttpStream {
int statuscode;
CamelStream *raw;
+ CamelStream *read;
};
struct _CamelHttpStreamClass {
@@ -88,7 +88,7 @@ struct _CamelHttpStreamClass {
CamelType camel_http_stream_get_type (void);
/* public methods */
-CamelStream *camel_http_stream_new (CamelHttpMethod method, CamelService *service, CamelURL *url);
+CamelStream *camel_http_stream_new (CamelHttpMethod method, struct _CamelSession *session, CamelURL *url);
void camel_http_stream_set_user_agent (CamelHttpStream *http_stream, const char *user_agent);