OSDN Git Service

Generated Makefile.am.
[ultramonkey-l7/sslproxy.git] / include / packet_editor.h
1 /*
2  * @file  packet_editor.h
3  * @brief Packet Editor Header
4  *
5  * Copyright (C) 2009  NTT COMWARE Corporation.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  *
22  **********************************************************************/
23
24 #ifndef __PACKET_EDITOR_H__
25 #define __PACKET_EDITOR_H__
26
27 #include <vector>
28 #include "logger_wrapper.h"
29 #include "sslproxy.h"
30 #include "sslproxysession.h"
31 #include "http_message.h"
32 #include "http_request.h"
33 #include "http_response.h"
34
35 class packet_editor
36 {
37 private:
38     const sslproxy_session* session;
39     void expand_macro(std::string&);
40     std::vector<std::string> split(const std::string&, const std::string&, int);
41
42 public:
43     packet_editor(const sslproxy_session*);
44     ~packet_editor();
45     void edit_client(char*, size_t&);
46     void edit_server(char*, size_t&);
47 };
48
49 #endif //__PACKET_EDITOR_H__