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
49
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* soup-headers.h: Asyncronous Callback-based SOAP Request Queue.
*
* Authors:
* Alex Graveley (alex@ximian.com)
*
* Copyright (C) 2001, Ximian, Inc.
*/
#ifndef SOUP_HEADERS_H
#define SOUP_HEADERS_H 1
#include <glib.h>
#include <libsoup/soup-message.h>
/* HTTP Header Parsing */
gboolean soup_headers_parse_request (gchar *str,
gint len,
GHashTable *dest,
gchar **req_method,
gchar **req_path,
SoupHttpVersion *ver);
gboolean soup_headers_parse_status_line (const char *status_line,
SoupHttpVersion *ver,
guint *status_code,
gchar **status_phrase);
gboolean soup_headers_parse_response (gchar *str,
gint len,
GHashTable *dest,
SoupHttpVersion *ver,
guint *status_code,
gchar **status_phrase);
/* HTTP parameterized header parsing */
char *soup_header_param_decode_token (char **in);
GHashTable *soup_header_param_parse_list (const char *header);
char *soup_header_param_copy_token (GHashTable *tokens,
char *t);
void soup_header_param_destroy_hash (GHashTable *table);
#endif /*SOUP_HEADERS_H*/
|