event/ServerSocket: pass UniqueSocketDescriptor to AddFD()
This commit is contained in:
parent
5fb21fbdb1
commit
daffefdb10
|
@ -24,6 +24,7 @@
|
|||
#include "config/Data.hxx"
|
||||
#include "config/Option.hxx"
|
||||
#include "config/Net.hxx"
|
||||
#include "net/UniqueSocketDescriptor.hxx"
|
||||
#include "system/Error.hxx"
|
||||
#include "util/RuntimeError.hxx"
|
||||
#include "fs/AllocatedPath.hxx"
|
||||
|
@ -66,7 +67,7 @@ listen_systemd_activation(ClientListener &listener)
|
|||
|
||||
for (int i = SD_LISTEN_FDS_START, end = SD_LISTEN_FDS_START + n;
|
||||
i != end; ++i)
|
||||
listener.AddFD(i);
|
||||
listener.AddFD(UniqueSocketDescriptor(i));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -107,8 +107,8 @@ public:
|
|||
return ::ToString(address);
|
||||
}
|
||||
|
||||
void SetFD(SocketDescriptor _fd) noexcept {
|
||||
SocketMonitor::Open(_fd);
|
||||
void SetFD(UniqueSocketDescriptor _fd) noexcept {
|
||||
SocketMonitor::Open(_fd.Release());
|
||||
SocketMonitor::ScheduleRead();
|
||||
}
|
||||
|
||||
|
@ -194,7 +194,7 @@ OneServerSocket::Open()
|
|||
|
||||
/* register in the EventLoop */
|
||||
|
||||
SetFD(_fd.Release());
|
||||
SetFD(std::move(_fd));
|
||||
}
|
||||
|
||||
ServerSocket::ServerSocket(EventLoop &_loop) noexcept
|
||||
|
@ -291,18 +291,16 @@ ServerSocket::AddAddress(AllocatedSocketAddress &&address) noexcept
|
|||
}
|
||||
|
||||
void
|
||||
ServerSocket::AddFD(int _fd)
|
||||
ServerSocket::AddFD(UniqueSocketDescriptor fd)
|
||||
{
|
||||
assert(_fd >= 0);
|
||||
|
||||
SocketDescriptor fd(_fd);
|
||||
assert(fd.IsDefined());
|
||||
|
||||
StaticSocketAddress address = fd.GetLocalAddress();
|
||||
if (!address.IsDefined())
|
||||
throw MakeSocketError("Failed to get socket address");
|
||||
|
||||
OneServerSocket &s = AddAddress(address);
|
||||
s.SetFD(fd);
|
||||
s.SetFD(std::move(fd));
|
||||
}
|
||||
|
||||
#ifdef HAVE_TCP
|
||||
|
|
|
@ -107,7 +107,7 @@ public:
|
|||
*
|
||||
* Throws #std::runtime_error on error.
|
||||
*/
|
||||
void AddFD(int fd);
|
||||
void AddFD(UniqueSocketDescriptor fd);
|
||||
|
||||
bool IsEmpty() const noexcept {
|
||||
return sockets.empty();
|
||||
|
|
Loading…
Reference in New Issue