Revision 21108,
855 bytes
checked in by ghudson, 20 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r21107,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-filter-offset: 8 -*- */ |
---|
2 | /* |
---|
3 | * soup-message-filter.c: Interface for arbitrary message manipulation |
---|
4 | * |
---|
5 | * Copyright (C) 2003, Ximian, Inc. |
---|
6 | */ |
---|
7 | |
---|
8 | #ifdef HAVE_CONFIG_H |
---|
9 | #include <config.h> |
---|
10 | #endif |
---|
11 | |
---|
12 | #include "soup-message-filter.h" |
---|
13 | |
---|
14 | SOUP_MAKE_INTERFACE (soup_message_filter, SoupMessageFilter, NULL) |
---|
15 | |
---|
16 | /** |
---|
17 | * soup_message_filter_setup_message: |
---|
18 | * @filter: an object that implements the #SoupMessageFilter interface |
---|
19 | * @msg: a #SoupMessage |
---|
20 | * |
---|
21 | * Performs some sort of processing on @msg in preparation for it |
---|
22 | * being sent. This will generally involve some combination of adding |
---|
23 | * headers, adding handlers, and connecting to signals. |
---|
24 | **/ |
---|
25 | void |
---|
26 | soup_message_filter_setup_message (SoupMessageFilter *filter, |
---|
27 | SoupMessage *msg) |
---|
28 | { |
---|
29 | SOUP_MESSAGE_FILTER_GET_CLASS (filter)->setup_message (filter, msg); |
---|
30 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.