Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mahi97/p2pfiletransfer
~ P2P File Transfer with UDP
https://github.com/mahi97/p2pfiletransfer
file-sharing java networ p2p udp
Last synced: 15 days ago
JSON representation
~ P2P File Transfer with UDP
- Host: GitHub
- URL: https://github.com/mahi97/p2pfiletransfer
- Owner: mahi97
- Created: 2018-12-22T20:09:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-07T21:11:28.000Z (almost 6 years ago)
- Last Synced: 2024-11-30T18:52:36.547Z (25 days ago)
- Topics: file-sharing, java, networ, p2p, udp
- Language: Java
- Size: 8.79 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# P2P File Transfer
## Introduction
peer-to-peer file transfering with `UDP` protocol. Receiver request for a file by its `name` if any Server peers have ready for send file with name of `name` and the valid `path` the file start to transfer.## Usage
You run the same application for both receiver and trasfer but with diffrent arguments.
```
p2p -help : show this help
p2p -receive [name] : Receiver request for file [name]
p2p –serve -name [name] -path [path] -port [port]: Senders provide file [name] that is under [path] and send it with port [port]
```
> Note: Senders peer should be run before receiver peers.