internal_network: only poll for accept on blocking sockets

This commit is contained in:
Liam
2024-01-30 10:29:05 -05:00
parent 8ddfecfbae
commit 5510b31972
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);