2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-01 06:25:34 +00:00

[trac499] Add logging of errors to IOFetch

This commit is contained in:
Stephen Morris
2011-02-24 08:58:58 +00:00
parent d4af3712f3
commit af01e66fde
5 changed files with 116 additions and 22 deletions

View File

@@ -70,8 +70,15 @@ public:
/// \brief Destructor
virtual ~UDPSocket();
virtual int getNative() const { return (socket_.native()); }
virtual int getProtocol() const { return (IPPROTO_UDP); }
/// \brief Return file descriptor of underlying socket
virtual int getNative() const {
return (socket_.native());
}
/// \brief Return protocol of socket
virtual int getProtocol() const {
return (IPPROTO_UDP);
}
/// \brief Open Socket
///