2012-05-10 06:06:41 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2014-03-18 20:02:29 -04:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 06:06:41 -04:00
|
|
|
* *
|
|
|
|
|
* 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 *
|
2012-05-11 07:33:57 -04:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 06:06:41 -04:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
2012-04-02 02:56:30 -04:00
|
|
|
#ifndef NETSTRING_H
|
|
|
|
|
#define NETSTRING_H
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2013-03-16 16:18:53 -04:00
|
|
|
#include "base/i2-base.h"
|
|
|
|
|
#include "base/stream.h"
|
|
|
|
|
|
2012-03-28 07:24:49 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2012-05-18 16:21:28 -04:00
|
|
|
/**
|
2012-09-19 06:32:39 -04:00
|
|
|
* Helper functions for reading/writing messages in the netstring format.
|
2012-05-19 05:04:52 -04:00
|
|
|
*
|
2012-09-19 06:32:39 -04:00
|
|
|
* @see http://cr.yp.to/proto/netstrings.txt
|
2012-05-18 16:21:28 -04:00
|
|
|
*
|
2012-07-24 07:13:02 -04:00
|
|
|
* @ingroup base
|
2012-05-18 16:21:28 -04:00
|
|
|
*/
|
2012-08-02 03:38:08 -04:00
|
|
|
class I2_BASE_API NetString
|
2012-03-28 07:24:49 -04:00
|
|
|
{
|
2012-05-18 05:32:30 -04:00
|
|
|
public:
|
2012-11-22 06:04:32 -05:00
|
|
|
static bool ReadStringFromStream(const Stream::Ptr& stream, String *message);
|
|
|
|
|
static void WriteStringToStream(const Stream::Ptr& stream, const String& message);
|
2012-05-21 17:42:54 -04:00
|
|
|
|
|
|
|
|
private:
|
2012-08-02 03:38:08 -04:00
|
|
|
NetString(void);
|
2012-03-28 07:24:49 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-02 02:56:30 -04:00
|
|
|
#endif /* NETSTRING_H */
|