25 lines
379 B
C++
25 lines
379 B
C++
#pragma once
|
|
|
|
#include <rublon/core_handler.hpp>
|
|
|
|
#include <rublon/curl.hpp>
|
|
#include <rublon/ws_http.hpp>
|
|
|
|
#ifndef RUBLON_USE_STDOUT
|
|
#include <rublon/pam.hpp>
|
|
|
|
namespace rublon {
|
|
using Pam_t = LinuxPam;
|
|
}
|
|
#else
|
|
#include <rublon/pam_stub.hpp>
|
|
|
|
namespace rublon {
|
|
using Pam_t = PamStub;
|
|
}
|
|
#endif
|
|
|
|
namespace rublon {
|
|
using CoreHandler_t = CoreHandler< LWS >;
|
|
} // namespace rublon
|