/usr/include/tnt/cookie.h is in libtntnet-dev 2.2.1-3+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | /*
* Copyright (C) 2005 Tommi Maekitalo
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* As a special exception, you may use this file as part of a free
* software library without restriction. Specifically, if other files
* instantiate templates or use macros or inline functions from this
* file, or you compile this file and link it with other files to
* produce an executable, this file does not by itself cause the
* resulting executable to be covered by the GNU General Public
* License. This exception does not however invalidate any other
* reasons why the executable file might be covered by the GNU Library
* General Public License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef TNT_COOKIE_H
#define TNT_COOKIE_H
#include <string>
#include <map>
#include <iosfwd>
#include <tnt/stringlessignorecase.h>
namespace tnt
{
class Cookies;
class CookieParser;
class Cookie
{
friend std::ostream& operator<< (std::ostream& out, const Cookies& c);
friend class CookieParser;
friend class HttpReply;
void write(std::ostream& out, const std::string& name) const;
public:
static const std::string maxAge;
static const std::string comment;
static const std::string domain;
static const std::string path;
static const std::string secure;
static const std::string version;
static const std::string expires;
private:
typedef std::map<std::string, std::string, StringLessIgnoreCase<std::string> > attrs_type;
std::string value;
attrs_type attrs;
bool secureFlag;
public:
Cookie()
: secureFlag(false)
{ }
Cookie(const std::string& v, unsigned maxAge_ = 0)
: value(v),
secureFlag(false)
{
if (maxAge_)
setMaxAge(maxAge_);
}
Cookie(const char* v, unsigned maxAge_ = 0)
: value(v),
secureFlag(false)
{
if (maxAge_)
setMaxAge(maxAge_);
}
const std::string& getValue() const { return value; }
std::string getAttr(const std::string& name) const
{
attrs_type::const_iterator it = attrs.find(name);
return it == attrs.end() ? std::string() : it->second;
}
operator const std::string& () const { return value; }
void setAttr(const std::string& name, const std::string& value_)
{ attrs[name] = value_; }
bool hasAttr(const std::string& name) const
{ return attrs.find(name) != attrs.end(); }
unsigned getMaxAge() const;
std::string getComment() const { return getAttr(comment); }
std::string getDomain() const { return getAttr(domain); }
std::string getPath() const { return getAttr(path); }
std::string getVersion() const { return getAttr(version); }
std::string getExpires() const { return getAttr(expires); }
bool isSecure() const { return secureFlag; }
void setMaxAge(unsigned seconds);
void setComment(const std::string& value_) { setAttr(comment, value_); }
void setDomain(const std::string& value_) { setAttr(domain, value_); }
void setPath(const std::string& value_) { setAttr(path, value_); }
void setVersion(const std::string& value_) { setAttr(version, value_); }
void setExpires(const std::string& value_) { setAttr(expires, value_); }
void setSecure(bool f = true) { secureFlag = f; }
bool hasMaxAge() const { return hasAttr(maxAge); }
bool hasComment() const { return hasAttr(comment); }
bool hasDomain() const { return hasAttr(domain); }
bool hasPath() const { return hasAttr(path); }
bool hasVersion() const { return hasAttr(version); }
bool hasExpires() const { return hasAttr(expires); }
};
class Cookies
{
friend std::ostream& operator<< (std::ostream& out, const Cookies& c);
friend class HttpReply;
typedef std::map<std::string, Cookie, StringLessIgnoreCase<std::string> > cookies_type;
cookies_type data;
static const Cookie emptyCookie;
public:
void set(const std::string& header);
void clear() { data.clear(); }
const Cookie& getCookie(const std::string& name) const
{
cookies_type::const_iterator it = data.find(name);
return it == data.end() ? emptyCookie : it->second;
}
void setCookie(const std::string& name, const Cookie& value_)
{ data[name] = value_; }
void clearCookie(const std::string& name);
void clearCookie(const std::string& name, const Cookie& c);
bool hasCookie(const std::string& name) const
{ return data.find(name) != data.end(); }
bool hasCookies() const
{ return !data.empty(); }
};
std::ostream& operator<< (std::ostream& out, const Cookies& c);
}
#endif // TNT_COOKIE_H
|