Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(upnp): add implementation based on IGD protocol #4156

Merged
merged 66 commits into from Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from 57 commits
Commits
Show all changes
66 commits
Select commit Hold shift + click to select a range
bddebad
feat(protocols): Add initial UPnP protocol
jxs Jul 3, 2023
ba6ad5a
cargo clippy
jxs Jul 4, 2023
3638fd9
fix docs
jxs Jul 4, 2023
6671af3
review: address Thomas review
jxs Jul 4, 2023
7edc88b
review: address Thomas review
jxs Jul 5, 2023
5c59216
review: address Thomas review
jxs Jul 5, 2023
cb2dbbc
update copyright
jxs Jul 6, 2023
4172755
rename Provider trait to Gateway
jxs Jul 6, 2023
6fc4cfc
replace UnoderedFutures on the main behaviour
jxs Jul 6, 2023
0eb75da
update Cargo.toml formatting
jxs Jul 7, 2023
3f3f745
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 7, 2023
7d679c8
revert Box<dyn Error> to String conversion.
jxs Jul 8, 2023
28e0fde
clippy
jxs Jul 8, 2023
bdb0818
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 10, 2023
293133b
address Thomas and Max review
jxs Jul 10, 2023
a6b170f
convert Gateway back into Provider and make it a message interface
jxs Jul 11, 2023
96e3a44
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 11, 2023
72eec83
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 14, 2023
e24cc16
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 24, 2023
b0f8f7a
refactor behaviour to reduce the amount of code
jxs Jul 25, 2023
4a90a78
update provider to handle tasks sequentially instead of concurrently
jxs Jul 25, 2023
f2207b6
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 25, 2023
960a50e
switch to idg-next ,
jxs Jul 26, 2023
1874193
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 27, 2023
92f5cea
add Changelog entries
jxs Jul 28, 2023
0b326bd
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 28, 2023
5384ae6
update Cargo.lock
jxs Jul 28, 2023
7398842
fix docs
jxs Jul 28, 2023
e106ad9
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 29, 2023
ac78e67
update multiaddr_to_socketaddr_protocol,
jxs Jul 29, 2023
13f3e74
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 31, 2023
3843453
clippy
jxs Jul 31, 2023
27b2442
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 31, 2023
5b3b905
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 31, 2023
97129b6
downgrade time and pin to 0.3.23
jxs Jul 31, 2023
b1affdd
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Jul 31, 2023
2a0a757
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Aug 1, 2023
550c248
publicly export upnp::Event
jxs Aug 1, 2023
82cfe2a
add upnp-example
jxs Aug 1, 2023
b599faf
address Thomas review
jxs Aug 2, 2023
f3e0fe8
check if the Gateway's external addres is public
jxs Aug 2, 2023
50d6d4e
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Aug 2, 2023
d5c2e82
cargo clippy
jxs Aug 3, 2023
1a81c76
fix docs
jxs Aug 3, 2023
502ec30
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Aug 7, 2023
eb54f3a
address review
jxs Aug 7, 2023
3216093
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Aug 22, 2023
d631d3a
remove config
jxs Aug 26, 2023
fe3c94f
fix examples and feature flags
jxs Aug 26, 2023
98d00de
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Aug 26, 2023
ef6fd56
use SearchOptions::default
jxs Aug 26, 2023
e480e61
feature gate everything
jxs Aug 27, 2023
029eaf6
address review
jxs Aug 31, 2023
194c792
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Aug 31, 2023
e9b5cd6
do not do io on the behaviour,
jxs Sep 1, 2023
7c8c534
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Sep 4, 2023
e5cb61d
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Sep 5, 2023
316b524
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Sep 6, 2023
ebc4fdb
replace example with tokio
jxs Sep 6, 2023
98ba415
Merge branch 'master' of github.com:libp2p/rust-libp2p into add-upnp-…
jxs Sep 6, 2023
b642cd9
deprecate async-std support
jxs Sep 7, 2023
4c18dab
address review
jxs Sep 8, 2023
1de13e8
address missing remark on review
jxs Sep 8, 2023
4b68a48
add publish false to overcome cargo semver
jxs Sep 11, 2023
98108f7
Merge branch 'master' into add-upnp-protocol
jxs Sep 12, 2023
1a36609
Merge branch 'master' into add-upnp-protocol
mergify[bot] Sep 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -20,6 +20,7 @@
- [`libp2p-relay` CHANGELOG](protocols/relay/CHANGELOG.md)
- [`libp2p-request-response` CHANGELOG](protocols/request-response/CHANGELOG.md)
- [`libp2p-rendezvous` CHANGELOG](protocols/rendezvous/CHANGELOG.md)
- [`libp2p-upnp` CHANGELOG](protocols/upnp/CHANGELOG.md)

## Transport Protocols & Upgrades

Expand Down