Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: client/virt/rss_client.py

Issue 6883246: Merge autotest upstream from @5318 ~ @5336 (Closed) Base URL: ssh://gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/virt/ppm_utils.py ('k') | client/virt/tests/autotest.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 """ 2 """
3 Client for file transfer services offered by RSS (Remote Shell Server). 3 Client for file transfer services offered by RSS (Remote Shell Server).
4 4
5 @author: Michael Goldish (mgoldish@redhat.com) 5 @author: Michael Goldish (mgoldish@redhat.com)
6 @copyright: 2008-2010 Red Hat Inc. 6 @copyright: 2008-2010 Red Hat Inc.
7 """ 7 """
8 8
9 import socket, struct, time, sys, os, glob 9 import socket, struct, time, sys, os, glob
10 10
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 logger = p 510 logger = p
511 511
512 if options.download: 512 if options.download:
513 download(address, port, src_pattern, dst_path, logger, options.timeout) 513 download(address, port, src_pattern, dst_path, logger, options.timeout)
514 elif options.upload: 514 elif options.upload:
515 upload(address, port, src_pattern, dst_path, logger, options.timeout) 515 upload(address, port, src_pattern, dst_path, logger, options.timeout)
516 516
517 517
518 if __name__ == "__main__": 518 if __name__ == "__main__":
519 main() 519 main()
OLDNEW
« no previous file with comments | « client/virt/ppm_utils.py ('k') | client/virt/tests/autotest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698