icinga2/lib/base/unixsocket.hpp
Michael Friedrich d14a88235d Replace Copyright header with a short version, part I
CLion -> replace in path
2019-02-25 14:48:22 +01:00

28 lines
376 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef UNIXSOCKET_H
#define UNIXSOCKET_H
#include "base/socket.hpp"
#ifndef _WIN32
namespace icinga
{
class UnixSocket final : public Socket
{
public:
DECLARE_PTR_TYPEDEFS(UnixSocket);
UnixSocket();
void Bind(const String& path);
void Connect(const String& path);
};
}
#endif /* _WIN32 */
#endif /* UNIXSOCKET_H */