Skip to content

Commit a65818b

Browse files
committed
Update readme
1 parent f88ddc5 commit a65818b

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,15 @@ while True: print(sock.recv())"
5959
# Boo
6060
```
6161

62-
On the second computer:
62+
On the second computer over the same router:
6363

6464
```bash
65-
sudo python -c "from rawsocketpy import RawSocket
65+
sudo python -c "from rawsocketpy import RawSocket; import time
6666
sock = RawSocket('wlp2s0', 0xEEFA)
67-
>hile True: print(sock.send('Boo'))"
67+
while True:
68+
sock.send('Boo')
69+
print('Boo has been sent')
70+
time.sleep(0.5)"
6871
```
6972

7073
## In-depth

0 commit comments

Comments
 (0)