Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
cdc16d8c
Commit
cdc16d8c
authored
Jan 06, 2017
by
Marcin Siodelski
Browse files
[5094] Addressed review comments.
- Removed unncessary public: - Added function description
parent
ea2e2736
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/lib/asiolink/io_asio_socket.h
View file @
cdc16d8c
...
...
@@ -78,7 +78,6 @@ class IOEndpoint;
template
<
typename
C
>
class
IOAsioSocket
:
public
IOSocket
{
public:
///
/// \name Constructors and Destructor
...
...
src/lib/asiolink/tcp_acceptor.h
View file @
cdc16d8c
...
...
@@ -26,7 +26,7 @@ namespace asiolink {
/// Internally it uses @c boost::asio::ip::tcp::acceptor class to implement
/// the acceptor service.
///
/// @tparam Acceptor callback type.
/// @tparam
C
Acceptor callback type.
template
<
typename
C
>
class
TCPAcceptor
:
public
IOSocket
{
public:
...
...
src/lib/asiolink/tcp_socket.h
View file @
cdc16d8c
...
...
@@ -153,6 +153,9 @@ public:
/// \brief Close socket
virtual
void
close
();
/// \brief Returns reference to the underlying ASIO socket.
///
/// \return Reference to underlying ASIO socket.
virtual
boost
::
asio
::
ip
::
tcp
::
socket
&
getASIOSocket
()
const
{
return
(
socket_
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment