0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 12:12:15 +02:00
openvpn3/openvpn/http/header.hpp
James Yonan 4d9a751af2 Added head comments to all source files.
Minor reorganization of unicode code.
2012-11-23 06:18:43 +00:00

72 lines
1.4 KiB
C++

//
// header.hpp
// OpenVPN
//
// Copyright (c) 2012 OpenVPN Technologies, Inc. All rights reserved.
// Denote the data in an HTTP header
#ifndef OPENVPN_HTTP_HEADER_H
#define OPENVPN_HTTP_HEADER_H
#include <string>
#include <sstream>
#include <openvpn/common/types.hpp>
#include <openvpn/common/exception.hpp>
#include <openvpn/common/string.hpp>
namespace openvpn {
namespace HTTP {
struct Header {
Header() {}
Header(const std::string& name_arg, const std::string& value_arg)
: name(name_arg), value(value_arg) {}
std::string to_string() const
{
std::ostringstream out;
out << name << '=' << value;
return out.str();
}
std::string name;
std::string value;
};
struct HeaderList : public std::vector<Header> {
const Header* get(const std::string& key) const
{
for (std::vector<Header>::const_iterator i = begin(); i != end(); ++i)
{
const Header& h = *i;
if (string::strcasecmp(key, h.name) == 0)
return &h;
}
return NULL;
}
const std::string get_value(const std::string& key) const
{
const Header* h = get(key);
if (h)
return h->value;
else
return "";
}
std::string to_string() const
{
std::ostringstream out;
for (size_t i = 0; i < size(); ++i)
out << '[' << i << "] " << (*this)[i].to_string() << std::endl;
return out.str();
}
};
}
}
#endif