source: skype/client.py @ d0a6a8c

Last change on this file since d0a6a8c was 737e9d9, checked in by Miklos Vajna <vmiklos@…>, at 2007-12-16T02:55:55Z

remove hardwired command from client tester

  • Property mode set to 100644
File size: 173 bytes
Line 
1import socket, sys
2
3client = socket.socket ( socket.AF_INET, socket.SOCK_STREAM )
4client.connect ( ( 'localhost', 2727 ) )
5
6client.send(sys.argv[1])
7print client.recv(1024)
Note: See TracBrowser for help on using the repository browser.