1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright 2012 Red Hat, Inc.
*/
#ifndef __SOUP_BODY_INPUT_STREAM_H__
#define __SOUP_BODY_INPUT_STREAM_H__ 1
#include "soup-types.h"
#include "soup-filter-input-stream.h"
#include "soup-message-headers.h"
G_BEGIN_DECLS
#define SOUP_TYPE_BODY_INPUT_STREAM (soup_body_input_stream_get_type ())
#define SOUP_BODY_INPUT_STREAM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SOUP_TYPE_BODY_INPUT_STREAM, SoupBodyInputStream))
#define SOUP_BODY_INPUT_STREAM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SOUP_TYPE_BODY_INPUT_STREAM, SoupBodyInputStreamClass))
#define SOUP_IS_BODY_INPUT_STREAM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SOUP_TYPE_BODY_INPUT_STREAM))
#define SOUP_IS_BODY_INPUT_STREAM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), SOUP_TYPE_BODY_INPUT_STREAM))
#define SOUP_BODY_INPUT_STREAM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SOUP_TYPE_BODY_INPUT_STREAM, SoupBodyInputStreamClass))
typedef struct _SoupBodyInputStreamPrivate SoupBodyInputStreamPrivate;
typedef struct {
GFilterInputStream parent;
SoupBodyInputStreamPrivate *priv;
} SoupBodyInputStream;
typedef struct {
GFilterInputStreamClass parent_class;
/* Padding for future expansion */
void (*_libsoup_reserved1) (void);
void (*_libsoup_reserved2) (void);
void (*_libsoup_reserved3) (void);
void (*_libsoup_reserved4) (void);
} SoupBodyInputStreamClass;
GType soup_body_input_stream_get_type (void);
GInputStream *soup_body_input_stream_new (GInputStream *base_stream,
SoupEncoding encoding,
goffset content_length);
G_END_DECLS
#endif /* __SOUP_BODY_INPUT_STREAM_H__ */
|