icinga2/third-party/boost-wintls/include/boost/wintls/detail/handshake_output_buffers.hpp

31 lines
787 B
C++

//
// Copyright (c) 2021 Kasper Laudrup (laudrup at stacktrace dot dk)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef BOOST_WINTLS_DETAIL_HANDSHAKE_OUTPUT_BUFFERS_HPP
#define BOOST_WINTLS_DETAIL_HANDSHAKE_OUTPUT_BUFFERS_HPP
#include <boost/wintls/detail/sspi_buffer_sequence.hpp>
namespace boost {
namespace wintls {
namespace detail {
class handshake_output_buffers : public sspi_buffer_sequence<1> {
public:
handshake_output_buffers()
: sspi_buffer_sequence(std::array<sspi_buffer, 1> {
SECBUFFER_TOKEN
}) {
}
};
} // namespace detail
} // namespace wintls
} // namespace boost
#endif // BOOST_WINTLS_DETAIL_HANDSHAKE_OUTPUT_BUFFERS_HPP