📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 18:46:14
📂
/ (Root)
/
lib64
/
python2.7
/
Demo
/
sockets
📍 /lib64/python2.7/Demo/sockets
🔄 Refresh
✏️
Editing: unixclient.py
Read Only
# Echo client demo using Unix sockets # Piet van Oostrum from socket import * FILE = 'unix-socket' s = socket(AF_UNIX, SOCK_STREAM) s.connect(FILE) s.send('Hello, world') data = s.recv(1024) s.close() print 'Received', repr(data)
💾 Save Changes
❌ Cancel