IoUringAsmEngn: Use pcloudDataSocket from UdpCmdDemux

This commit is contained in:
2025-11-01 23:01:11 -04:00
parent 5845f1a41d
commit 14b97a52ed
3 changed files with 12 additions and 7 deletions
+6 -5
View File
@@ -61,6 +61,12 @@ public:
return pcloudDataSocketDesc;
}
private:
// Socket and async objects
std::shared_ptr<boost::asio::posix::stream_descriptor> pcloudDataSocketDesc;
// Socket and async objects
std::shared_ptr<boost::asio::posix::stream_descriptor> cmdEndpointFdDesc;
private:
void setupSockets();
void setupCommandSocket();
@@ -74,11 +80,6 @@ private:
uint16_t commandPort;
uint16_t dataPort;
// Socket and async objects
std::shared_ptr<boost::asio::posix::stream_descriptor> pcloudDataSocketDesc;
// Socket and async objects
std::shared_ptr<boost::asio::posix::stream_descriptor> cmdEndpointFdDesc;
// State management
std::atomic<bool> isActive{false};
std::atomic<bool> shouldStop{false};