bnadarevic / CTFNoteTaker

bot for taking notes about challenges during CTF
5 stars 0 forks source link

increase Socket.send() chunk size #30

Open ValarDragon opened 8 years ago

ValarDragon commented 8 years ago

Currently Socket.send(), regardless of how many sends, appears to send first 512 bytes quickly, then waits a second or two, then continues sending the rest slowly. It would be far more convenient if it could send all output all at once, or to increase send size for whole application / specific areas. This may not be possible to fix.