mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-24 11:39:25 +01:00
6 lines
279 B
Python
6 lines
279 B
Python
def connect(name, networkdata):
|
|
print('%s: Using PyLink stub/testing protocol.' % name)
|
|
print('Send password: %s' % networkdata['sendpass'])
|
|
print('Receive password: %s' % networkdata['recvpass'])
|
|
print('Server: %s:%s' % (networkdata['ip'], networkdata['port']))
|