Parcourir la source

Don't check readability of BitTorrent TCP socket.

Don't check readability of BitTorrent TCP socket to avoid flooding.
Tatsuhiro Tsujikawa il y a 14 ans
Parent
commit
fee9b95db3
1 fichiers modifiés avec 1 ajouts et 7 suppressions
  1. 1 7
      src/PeerListenCommand.cc

+ 1 - 7
src/PeerListenCommand.cc

@@ -61,12 +61,7 @@ PeerListenCommand::PeerListenCommand
     family_(family)
 {}
 
-PeerListenCommand::~PeerListenCommand()
-{
-  if(socket_) {
-    e_->deleteSocketForReadCheck(socket_, this);
-  }
-}
+PeerListenCommand::~PeerListenCommand() {}
 
 bool PeerListenCommand::bindPort(uint16_t& port, IntSequence& seq)
 {
@@ -86,7 +81,6 @@ bool PeerListenCommand::bindPort(uint16_t& port, IntSequence& seq)
       socket_->bind(A2STR::NIL, port, family_);
       socket_->beginListen();
       socket_->setNonBlockingMode();
-      e_->addSocketForReadCheck(socket_, this);
       A2_LOG_NOTICE(fmt("IPv%d BitTorrent: listening to port %u", ipv, port));
       return true;
     } catch(RecoverableException& ex) {