forked from vrasneur/icapclient
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathICAPResponse.h
More file actions
41 lines (34 loc) · 1.1 KB
/
ICAPResponse.h
File metadata and controls
41 lines (34 loc) · 1.1 KB
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
/* -*- Mode: C; c-basic-offset: 4 -*- */
/*
* Copyright 2015 Vincent Rasneur <vrasneur@free.fr>
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
* NON INFRINGEMENT. See the GNU General Public License for
* more details.
*/
#ifndef PY_ICAP_RESPONSE_H
#define PY_ICAP_RESPONSE_H
#include <Python.h>
#include "ICAPConnection.h"
typedef struct
{
PyObject_HEAD
PyObject *icap_status;
PyObject *icap_reason;
PyObject *icap_headers;
PyObject *http_req_line;
PyObject *http_req_headers;
PyObject *http_resp_line;
PyObject *http_resp_headers;
PyObject *content;
} PyICAPResponse;
extern PyTypeObject PyICAPResponseType;
PyObject *py_resp_new(PyICAPConnection *conn);
#endif // PY_ICAP_RESPONSE_H