24 lines
539 B
C++
24 lines
539 B
C++
/*
|
|
Copyright (c) 2014 IOnU Security Inc. All rights reserved
|
|
Created February 2014 by Kendrick Webster
|
|
|
|
gluster_status/main.h - main header for gluster_status utility
|
|
*/
|
|
#pragma once
|
|
|
|
// common headers for the gluster_status utility
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "Types.h"
|
|
#include "Macros.h"
|
|
#include "Hash.hpp"
|
|
#include "LogTrace.h"
|
|
#include "Version.h"
|
|
|
|
namespace ionu { namespace gluster_status {
|
|
|
|
constexpr uint16_t DEFAULT_UDP_PORT = 32042;
|
|
constexpr const char* APPLICATION_NAME = version::name;
|
|
|
|
}}
|