/* * * SQUID Web Proxy Cache http://www.squid-cache.org/ * ---------------------------------------------------------- * * Squid is the result of efforts by numerous individuals from * the Internet community; see the CONTRIBUTORS file for full * details. Many organizations have provided support for Squid's * development; see the SPONSORS file for full details. Squid is * Copyrighted (C) 2001 by the Regents of the University of * California; see the COPYRIGHT file for full details. Squid * incorporates software developed and/or copyrighted by other * sources; see the CREDITS file for full details. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. * * Copyright (c) 2003, Robert Collins */ #ifndef SQUID_HTTP_STATUSLINE_H #define SQUID_HTTP_STATUSLINE_H #include "http/ProtocolVersion.h" #include "http/StatusCode.h" #include "SquidString.h" class Packer; class String; namespace Http { /** * Holds the values parsed from an HTTP reply status line. * * For example: HTTP/1.1 200 OK */ class StatusLine { public: /// reset this status-line back to empty state void init(); /// reset this status-line back to Internal Server Error state void clean(); /// set this status-line to the given values /// when reason is NULL the default message text for this StatusCode will be used void set(const Http::ProtocolVersion &newVersion, Http::StatusCode newStatus, const char *newReason = NULL); /// retrieve the status code for this status line Http::StatusCode status() const { return status_; } /// retrieve the reason string for this status line const char *reason() const; /// pack fields using Packer void packInto(Packer * p) const; /** * Parse a buffer and fill internal structures; * \return true on success, false otherwise */ bool parse(const String &protoPrefix, const char *start, const char *end); public: /* public, read only */ /** * By rights protocol name should be a constant "HTTP", with no need for this field to exist. * However there are protocols which violate HTTP by sending their own custom formats * back with other protocol names (ICY streaming format being the current major problem). */ // XXX: protocol is part of Http::ProtocolVersion. We should be able to use version.protocol instead now. AnyP::ProtocolType protocol; Http::ProtocolVersion version; ///< breakdown of protocol version label: (HTTP/ICY) and (0.9/1.0/1.1) private: /// status code. ie 100 ... 200 ... 404 ... 599 Http::StatusCode status_; /// points to a _constant_ string (default or supplied), never free()d const char *reason_; }; } // namespace Http #endif /* SQUID_HTTP_STATUSLINE_H */ .