1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; 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 #ifndef __SOUP_CACHE_PRIVATE_H__ 24 #define __SOUP_CACHE_PRIVATE_H__ 1 25 26 #include "soup-cache.h" 27 #include <libsoup/soup-message.h> 28 29 G_BEGIN_DECLS 30 31 SoupCacheResponse soup_cache_has_response (SoupCache *cache, 32 SoupMessage *msg); 33 GInputStream *soup_cache_send_response (SoupCache *cache, 34 SoupMessage *msg); 35 SoupCacheability soup_cache_get_cacheability (SoupCache *cache, 36 SoupMessage *msg); 37 SoupMessage *soup_cache_generate_conditional_request (SoupCache *cache, 38 SoupMessage *original); 39 void soup_cache_cancel_conditional_request (SoupCache *cache, 40 SoupMessage *msg); 41 void soup_cache_update_from_conditional_request (SoupCache *cache, 42 SoupMessage *msg); 43 44 G_END_DECLS 45 46 #endif /* __SOUP_CACHE_PRIVATE_H__ */ 47