1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2020 Red Hat (www.redhat.com)
4  *
5  * This library is free software: you can redistribute it and/or modify it
6  * under the terms of the GNU Lesser General Public License as published by
7  * the Free Software Foundation.
8  *
9  * This library is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
12  * for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #if !defined (__LIBEDATASERVER_H_INSIDE__) && !defined (LIBEDATASERVER_COMPILATION)
19 #error "Only <libedataserver/libedateserver.h> should be included directly."
20 #endif
21 
22 #ifndef E_SOUP_LOGGER_H
23 #define E_SOUP_LOGGER_H
24 
25 #include <libsoup/soup.h>
26 
27 G_BEGIN_DECLS
28 
29 GInputStream *	e_soup_logger_attach	(SoupMessage *message,
30 					 GInputStream *input_stream);
31 
32 G_END_DECLS
33 
34 #endif /* E_SOUP_LOGGER_H */
35