Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
114 commits
Select commit Hold shift + click to select a range
c17a870
feat: use quinn multipath
dignifiedquire Jul 7, 2025
7fe570d
update iroh-quinn
dignifiedquire Jul 7, 2025
2f469ac
start opening paths
dignifiedquire Jul 8, 2025
870716f
add more paths
dignifiedquire Jul 8, 2025
346a7c2
set keep alive and idle timeouts for new paths
dignifiedquire Jul 8, 2025
68b1769
insert relay path
dignifiedquire Jul 9, 2025
0eb3fde
set relay path as backup
dignifiedquire Jul 11, 2025
79ec17f
start removing ping logic from the node_map
dignifiedquire Jul 11, 2025
c4baca8
start tracking path events
dignifiedquire Jul 11, 2025
549adee
start figuring out more details
dignifiedquire Jul 12, 2025
9ef5765
wip
dignifiedquire Jul 14, 2025
75d5525
get some stuff to work again
dignifiedquire Jul 18, 2025
4f78898
remove ip_mapped_addresses
dignifiedquire Jul 21, 2025
130710f
use correct relay addr on recv
dignifiedquire Jul 21, 2025
dba89df
ensure connection registration
dignifiedquire Jul 21, 2025
aab083d
remove rtt_actor, this is now done inside quinn on a per path basis
dignifiedquire Jul 21, 2025
d4484da
open additional paths after the initial connection
dignifiedquire Jul 21, 2025
6cb94e4
ensure path open
dignifiedquire Jul 22, 2025
998e283
some debugging
dignifiedquire Jul 23, 2025
99cee61
update quinn branch
dignifiedquire Jul 23, 2025
4b60a9a
fixups
dignifiedquire Jul 28, 2025
04b714c
update deps
dignifiedquire Aug 1, 2025
59efdcf
bunch of renames and doc updates, no functional changes
flub Aug 28, 2025
f9924cd
switch to main multipath branch
flub Aug 29, 2025
3058a8e
another rename
flub Aug 29, 2025
11dd04d
Set max_idle_time to a good value
flub Aug 29, 2025
6869faa
fix typo
flub Sep 1, 2025
539a514
Start hooking up a new NodeStateActor
flub Sep 16, 2025
a1a7d89
Rename AllPathsMappedAddr to NodeIdMappedAddr
flub Sep 16, 2025
4b00ad7
Move all mapped addrs to one module
flub Sep 16, 2025
31ab033
allow me to send via the NodeStateActor
flub Sep 16, 2025
5ae71ed
Unify NodeIdMappedAddr and RelayMappedAddr a bit more
flub Sep 16, 2025
599f25d
start implementing AddConnection
flub Sep 17, 2025
2417e6b
make add_node_addr async and send it to the NodeStateActor
flub Sep 18, 2025
9820e60
start handling AddNodeAddr message
flub Sep 18, 2025
ef7a6f3
start sending datagrams from the actor
flub Sep 18, 2025
76f3768
Start adding state for holepunching decisions
flub Sep 23, 2025
1366161
refactor to allow scheduling holepunching attempts
flub Sep 23, 2025
3436423
plug in DiscoState to the NodeStateActor
flub Sep 23, 2025
01bf15c
a sane method to send disco messages
flub Sep 23, 2025
001d16d
Implement starting of holepunching
flub Sep 24, 2025
7a9023f
handle receiving pings
flub Sep 24, 2025
92dd37c
handle receiving CallMeMaybe messages
flub Sep 24, 2025
ac2db4d
open a path when we receive a pong
flub Sep 25, 2025
6d69555
Move open path to not block the actor
flub Sep 29, 2025
12d12c0
select the right path
flub Sep 30, 2025
9e7be2d
close paths on all connections
flub Sep 30, 2025
c1bfdf5
send connections to the NodeStateActor
flub Sep 30, 2025
7b4f056
remove PingActions from magicsock Actor Message
flub Sep 30, 2025
d3b81e7
Kill a bunch of dead code
flub Sep 30, 2025
d9ed9be
use a better way to send to this channel
flub Sep 30, 2025
2c521b0
Hook up connecting check for a valid send addr
flub Oct 1, 2025
21894e7
Do not send incoming packets through the NodeMap
flub Oct 1, 2025
fc97009
delete a whole bunch of unused code
flub Oct 1, 2025
0b4214b
delete some more unused code
flub Oct 1, 2025
a0d5ba1
fine tune logging
flub Oct 2, 2025
65c5d30
try_send is removed. do not log poll_send span twice
flub Oct 2, 2025
e7d9268
Do not holepunch on sending the first message
flub Oct 2, 2025
924f41b
postpone solving this, make the test work
flub Oct 2, 2025
8b1fd0f
Add the path from a new connection, call select path
flub Oct 3, 2025
0522c0e
Do not close the last direct path on a connection
flub Oct 3, 2025
50cc92f
Open some more paths when needed
flub Oct 3, 2025
4a1375f
Add a first relay test
flub Oct 3, 2025
ee20734
Merge branch 'main' into feat-multipath
flub Oct 6, 2025
fdeb6f4
tidy up NodeMap creation
flub Oct 6, 2025
d4fc291
Simplify delayed discovery start
flub Oct 6, 2025
8ba3fd9
Remove try_send impls, no longer used
flub Oct 6, 2025
23ef6fe
remove dead code
flub Oct 6, 2025
7fbd5df
Merge branch 'main' into feat-multipath
flub Oct 6, 2025
3f58e95
Remove MagicStack and mesh_stacks
flub Oct 7, 2025
7ac4dec
dead code
flub Oct 7, 2025
f38e5c2
remove test and delete then unused function
flub Oct 7, 2025
1eeb4bb
start removing old nodestate
flub Oct 7, 2025
145cb18
delete more: path_validity mod is gone
flub Oct 7, 2025
ccb3287
remove more!
flub Oct 7, 2025
80157d4
and more gone
flub Oct 7, 2025
b0957cb
rename temporary name, now the name is free again
flub Oct 7, 2025
a3e58f8
slightly better logging
flub Oct 7, 2025
ce564f1
avoid unneeded mut when not testing
flub Oct 7, 2025
4eb0f07
Convert to canonical IP address in IpSender
flub Oct 7, 2025
28bf51c
remove duplicate adding
flub Oct 8, 2025
befde29
clearer bounds writing
flub Oct 8, 2025
2b2f3c2
Merge branch 'main' into feat-multipath
flub Oct 8, 2025
79cd50c
fix AddrMap impl to update both maps
flub Oct 8, 2025
c2a192e
Always use IPv6 addresses
flub Oct 8, 2025
04e1e3d
tweak logging, this is too noisy
flub Oct 8, 2025
660c39a
random lost import
flub Oct 8, 2025
9da6c1c
keep reducing redundant logging
flub Oct 8, 2025
85cedca
Make transports Addrs use the canonical form
flub Oct 9, 2025
7ee963f
insert PathId::ZERO in the path_id_map
flub Oct 9, 2025
9de1055
fix addr selection for holepunching
flub Oct 9, 2025
ae07d68
bunch of logging imporvements
flub Oct 9, 2025
0ce64c9
remove redundant logging
flub Oct 9, 2025
9a592ce
plug through a minimal PathInfo
flub Oct 9, 2025
eb92bb7
We don't pend CallMeMaybe anymore
flub Oct 9, 2025
6e31e4d
clippy, at last some code quality
flub Oct 9, 2025
008648c
care to enable multipath?
flub Oct 9, 2025
cdc0f90
refactor into more methods, just mechanical
flub Oct 10, 2025
b80de1a
Log transports::Addr a bit more compactly
flub Oct 14, 2025
4200059
some minimal docs
flub Oct 14, 2025
5988e94
rework the test a little to have easier spans
flub Oct 14, 2025
77dfc32
log the correct packet lengths
flub Oct 14, 2025
8b8321b
Set the path status for the initial path
flub Oct 14, 2025
50f98b8
next thing to work on
flub Oct 14, 2025
b4114fa
chore: update git deps
dignifiedquire Oct 14, 2025
583cf9e
Merge remote-tracking branch 'origin/main' into feat-multipath
dignifiedquire Oct 14, 2025
5071e56
Merge remote-tracking branch 'origin/main' into feat-multipath
dignifiedquire Oct 14, 2025
1976993
improve logging and reduce max concurrent paths to 16
flub Oct 15, 2025
e10ac11
Merge branch 'main' into feat-multipath
flub Oct 16, 2025
ce5bdd2
newtype the connection id
flub Oct 16, 2025
7839a4c
make sure that the transport addrs use canonical addresses
flub Oct 17, 2025
fcaea95
No longer need to patch rustls
flub Oct 18, 2025
7d86eff
Only select the path based on open paths
flub Oct 20, 2025
203204c
some fixes to path selection
flub Oct 20, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 67 additions & 73 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading