Codebase list sshtunnel / 1c9c104
New upstream snapshot. Debian Janitor 1 year, 4 months ago
5 changed file(s) with 20 addition(s) and 22 deletion(s). Raw diff Collapse all Expand all
22 Version: 0.4.0
33 Summary: Pure python SSH tunnels
44 Home-page: https://github.com/pahaz/sshtunnel
5 Download-URL: https://pypi.python.org/packages/source/s/sshtunnel/sshtunnel-0.4.0.zip
56 Author: Pahaz White
67 Author-email: pahaz.white@gmail.com
78 License: MIT
8 Download-URL: https://pypi.python.org/packages/source/s/sshtunnel/sshtunnel-0.4.0.zip
99 Keywords: ssh tunnel paramiko proxy tcp-forward
1010 Platform: unix
1111 Platform: macos
506506 .. _#211: https://github.com/pahaz/sshtunnel/issues/211
507507 .. _#219: https://github.com/pahaz/sshtunnel/issues/219
508508 .. _detail: https://github.com/pahaz/sshtunnel/commit/64af238b799b0e0057c4f9b386cda247e0006da9#diff-76bc1662a114401c2954deb92b740081R127
509
510
0 sshtunnel (0.4.0-1) UNRELEASED; urgency=low
0 sshtunnel (0.4.0+git20221028.1.d2167a2-1) UNRELEASED; urgency=low
11
22 * New upstream release.
3 * New upstream snapshot.
34
4 -- Debian Janitor <janitor@jelmer.uk> Wed, 14 Sep 2022 02:35:06 -0000
5 -- Debian Janitor <janitor@jelmer.uk> Sat, 17 Dec 2022 11:23:25 -0000
56
67 sshtunnel (0.1.4-3) unstable; urgency=medium
78
22 Version: 0.4.0
33 Summary: Pure python SSH tunnels
44 Home-page: https://github.com/pahaz/sshtunnel
5 Download-URL: https://pypi.python.org/packages/source/s/sshtunnel/sshtunnel-0.4.0.zip
56 Author: Pahaz White
67 Author-email: pahaz.white@gmail.com
78 License: MIT
8 Download-URL: https://pypi.python.org/packages/source/s/sshtunnel/sshtunnel-0.4.0.zip
99 Keywords: ssh tunnel paramiko proxy tcp-forward
1010 Platform: unix
1111 Platform: macos
506506 .. _#211: https://github.com/pahaz/sshtunnel/issues/211
507507 .. _#219: https://github.com/pahaz/sshtunnel/issues/219
508508 .. _detail: https://github.com/pahaz/sshtunnel/commit/64af238b799b0e0057c4f9b386cda247e0006da9#diff-76bc1662a114401c2954deb92b740081R127
509
510
00 [console_scripts]
11 sshtunnel = sshtunnel:_cli_main
2
305305 while chan.active:
306306 rqst, _, _ = select([self.request, chan], [], [], 5)
307307 if self.request in rqst:
308 data = self.request.recv(1024)
308 data = self.request.recv(16384)
309309 if not data:
310310 self.logger.log(
311311 TRACE_LEVEL,
312312 '>>> OUT {0} recv empty data >>>'.format(self.info)
313313 )
314314 break
315 self.logger.log(
316 TRACE_LEVEL,
317 '>>> OUT {0} send to {1}: {2} >>>'.format(
318 self.info,
319 self.remote_address,
320 hexlify(data)
315 if self.logger.isEnabledFor(TRACE_LEVEL):
316 self.logger.log(
317 TRACE_LEVEL,
318 '>>> OUT {0} send to {1}: {2} >>>'.format(
319 self.info,
320 self.remote_address,
321 hexlify(data)
322 )
321323 )
322 )
323324 chan.sendall(data)
324325 if chan in rqst: # else
325326 if not chan.recv_ready():
328329 '<<< IN {0} recv is not ready <<<'.format(self.info)
329330 )
330331 break
331 data = chan.recv(1024)
332 self.logger.log(
333 TRACE_LEVEL,
334 '<<< IN {0} recv: {1} <<<'.format(self.info, hexlify(data))
335 )
332 data = chan.recv(16384)
333 if self.logger.isEnabledFor(TRACE_LEVEL):
334 self.logger.log(
335 TRACE_LEVEL,
336 '<<< IN {0} recv: {1} <<<'.format(self.info, hexlify(data))
337 )
336338 self.request.sendall(data)
337339
338340 def handle(self):