1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2 /*
3  * soup-cache-private.h:
4  *
5  * Copyright (C) 2010 Igalia, S.L.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library 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  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public License
18  * along with this library; see the file COPYING.LIB.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22 
23 #pragma once
24 
25 #include "cache/soup-cache.h"
26 #include "soup-message.h"
27 
28 G_BEGIN_DECLS
29 
30 SoupCacheResponse  soup_cache_has_response                    (SoupCache   *cache,
31 							       SoupMessage *msg);
32 GInputStream      *soup_cache_send_response                   (SoupCache   *cache,
33 							       SoupMessage *msg);
34 SoupCacheability   soup_cache_get_cacheability                (SoupCache   *cache,
35 							       SoupMessage *msg);
36 SoupMessage       *soup_cache_generate_conditional_request    (SoupCache   *cache,
37 							       SoupMessage *original);
38 void               soup_cache_cancel_conditional_request      (SoupCache   *cache,
39 							       SoupMessage *msg);
40 void               soup_cache_update_from_conditional_request (SoupCache   *cache,
41 							       SoupMessage *msg);
42 
43 G_END_DECLS
44