Ticket #35: 666-proxy.patch
| File 666-proxy.patch, 0.9 kB (added by dx, 17 months ago) |
|---|
-
Socket.py
186 186 the same as Socket, dont use it unleast you know what you are doing 187 187 (and you dont know what you are doing :P) 188 188 ''' 189 buffer = '' 189 190 while len(buffer) < length: 190 191 buffer += self.receive() 191 192 return buffer -
core.py
256 256 raise RedirectionError, 'Too many redirections' 257 257 258 258 # Recieve GCF payload if any 259 if command == 'GCF' and self._proxy == None:259 if command == 'GCF': 260 260 self.socket.receivePayload( int( params ) ) 261 261 262 262 (command, tid, params) = self.socket.receiveCommand()
