Method
SoupMessageadd_header_handler
Declaration [src]
guint
soup_message_add_header_handler (
SoupMessage* msg,
const char* signal,
const char* header,
GCallback callback,
gpointer user_data
)
Description [src]
Adds a signal handler to msg
for signal
.
Similar to g_signal_connect()
, but the callback
will only be run
if msg
‘s incoming messages headers (that is, the request_headers
) contain
a header named header
.
This method is not directly available to language bindings. |
Parameters
signal |
const char* |
Signal to connect the handler to. |
|
The data is owned by the caller of the function. | |
The value is a NUL terminated UTF-8 string. | |
header |
const char* |
HTTP response header to match against. |
|
The data is owned by the caller of the function. | |
The value is a NUL terminated UTF-8 string. | |
callback |
GCallback |
The header handler. |
|
user_data |
gpointer |
Data to pass to |
|
The argument can be NULL . | |
The data is owned by the caller of the function. |
Return value
Returns: | guint |
The handler ID from |