We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f88ddc5 commit a65818bCopy full SHA for a65818b
1 file changed
README.md
@@ -59,12 +59,15 @@ while True: print(sock.recv())"
59
# Boo
60
```
61
62
-On the second computer:
+On the second computer over the same router:
63
64
```bash
65
-sudo python -c "from rawsocketpy import RawSocket
+sudo python -c "from rawsocketpy import RawSocket; import time
66
sock = RawSocket('wlp2s0', 0xEEFA)
67
->hile True: print(sock.send('Boo'))"
+while True:
68
+ sock.send('Boo')
69
+ print('Boo has been sent')
70
+ time.sleep(0.5)"
71
72
73
## In-depth
0 commit comments