Blame libsoup/soup-cache-private.h

Packit Service ca3877
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
Packit Service ca3877
/*
Packit Service ca3877
 * soup-cache-private.h:
Packit Service ca3877
 *
Packit Service ca3877
 * Copyright (C) 2010 Igalia, S.L.
Packit Service ca3877
 *
Packit Service ca3877
 * This library is free software; you can redistribute it and/or
Packit Service ca3877
 * modify it under the terms of the GNU Library General Public
Packit Service ca3877
 * License as published by the Free Software Foundation; either
Packit Service ca3877
 * version 2 of the License, or (at your option) any later version.
Packit Service ca3877
 *
Packit Service ca3877
 * This library is distributed in the hope that it will be useful,
Packit Service ca3877
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service ca3877
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service ca3877
 * Library General Public License for more details.
Packit Service ca3877
 *
Packit Service ca3877
 * You should have received a copy of the GNU Library General Public License
Packit Service ca3877
 * along with this library; see the file COPYING.LIB.  If not, write to
Packit Service ca3877
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Packit Service ca3877
 * Boston, MA 02110-1301, USA.
Packit Service ca3877
 */
Packit Service ca3877
Packit Service ca3877
#ifndef SOUP_CACHE_PRIVATE_H
Packit Service ca3877
#define SOUP_CACHE_PRIVATE_H 1
Packit Service ca3877
Packit Service ca3877
#include "soup-cache.h"
Packit Service ca3877
#include <libsoup/soup-message.h>
Packit Service ca3877
Packit Service ca3877
G_BEGIN_DECLS
Packit Service ca3877
Packit Service ca3877
SoupCacheResponse  soup_cache_has_response                    (SoupCache   *cache,
Packit Service ca3877
							       SoupMessage *msg);
Packit Service ca3877
GInputStream      *soup_cache_send_response                   (SoupCache   *cache,
Packit Service ca3877
							       SoupMessage *msg);
Packit Service ca3877
SoupCacheability   soup_cache_get_cacheability                (SoupCache   *cache,
Packit Service ca3877
							       SoupMessage *msg);
Packit Service ca3877
SoupMessage       *soup_cache_generate_conditional_request    (SoupCache   *cache,
Packit Service ca3877
							       SoupMessage *original);
Packit Service ca3877
void               soup_cache_cancel_conditional_request      (SoupCache   *cache,
Packit Service ca3877
							       SoupMessage *msg);
Packit Service ca3877
void               soup_cache_update_from_conditional_request (SoupCache   *cache,
Packit Service ca3877
							       SoupMessage *msg);
Packit Service ca3877
Packit Service ca3877
G_END_DECLS
Packit Service ca3877
Packit Service ca3877
#endif /* SOUP_CACHE_PRIVATE_H */