dovepipe 0.1.6

used for sending files in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Examples


Demonstrates sending and recieving files by sending the file "file_to_send.txt"

Sender example:

`cargo run --example sender`

Reciever example:

`cargo run --example reciever`

They will ask for each others ip addresses with ports.
If you are running both on a single computer you can do 127.0.0.1:\<port\>.

You can also use theese across the open internet, without port forwarding. You just replace the ip:s with the global ips. The ports stay the same. This is possible without port-forwards because of something called [udp-holepunching](https://en.wikipedia.org/wiki/UDP_hole_punching).