internal_network: only poll for accept on blocking sockets

This commit is contained in:
Liam 2024-01-30 10:29:05 -05:00
parent d154926e24
commit 52904fc719
2 changed files with 20 additions and 13 deletions

View file

@ -166,6 +166,9 @@ public:
bool IsOpened() const override;
void HandleProxyPacket(const ProxyPacket& packet) override;
private:
bool is_non_blocking = false;
};
std::pair<s32, Errno> Poll(std::vector<PollFD>& poll_fds, s32 timeout);