- Notifications
You must be signed in to change notification settings - Fork50
Answering the question nobody asked: what if you wanted to text your friends using only ARP?
License
kognise/arpchat
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
so... you know arp? the protocol your computer uses to find the mac addresses of other computers on your network? yeah. that.
i thought it would be a great idea to hijack it to make a chat app :)
built in two days because i was sick and had nothing better to do.
- once a year, i'm on a client isolated network that i want to chat with friends over
- i'm completely insane
- i'm a programmer
(i swear, i might actually briefly have a use for this! it might not be entirely useless! ... and other lies i tell myself)
yes
you can send messages tens of thousands of characters long because i implemented a (naive) generalizable transport protocol on top of arp. there's also a bit of compression.
if you wanted, you could probably split off the networking part of this and use it instead of udp. please don't do this.
not only are join and leave notifications a thing, i built an entire presence discovery and heartbeat system to see an updated list of other online users. ironically, part of this serves a similar purpose to arp itself.
for more information on how this all works technically, check outthe little article i wrote.
if you actually want to install this for some reason, you can get it fromthe releases page.
on windows, you probably neednpcap. make sure you check "Install Npcap in WinPcap API-compatible Mode" in the installer!
on linux, you might have to give arpchat network privileges:
sudo setcap CAP_NET_RAW+ep /path/to/arpchat
then just run the binary in a terminal. you know it's working properly if you can see your own messages when you send them. if youcan't see your messages, try selecting a different interface or protocol!
have any issues? that really sucks. you can make an issue if it pleases you.
you don't really want to build this. anyway, it's tested on the latest unstable rust.
on windows, download theWinPcap Developer's Pack and set theLIB
environment variable to theWpdPack/Lib/x64/
folder.
cargo build
About
Answering the question nobody asked: what if you wanted to text your friends using only ARP?