Commit 7da5cf6
feat(vsock): integrate Windows TSI proxies into muxer
Wire Windows TSI proxy instantiation into vsock muxer:
muxer.rs changes:
- Conditional imports: Unix uses TsiStreamProxy/TsiDgramProxy
- Windows uses TsiStreamProxyWindowsWrapper/TsiDgramProxyWindowsWrapper
- RawFd gated to non-Windows (added RawFdType alias)
- SOCK_STREAM proxy creation: dispatch to Windows wrapper on Windows
- SOCK_DGRAM proxy creation: dispatch to Windows wrapper on Windows
Complete TSI Windows implementation now integrated:
- Phase 1-4: Low-level abstractions (socket, stream, dgram, pipe)
- Phase 5: Proxy trait wrappers + muxer integration
- Total: ~2,100 lines of Windows TSI code
TSI on Windows now supports:
- TCP connections (AF_INET/AF_INET6)
- UDP datagrams (AF_INET/AF_INET6)
- Named Pipes (AF_UNIX equivalent)
- Credit-based flow control
- Event-driven I/O
Next: End-to-end testing with guest VM.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent b0ad331 commit 7da5cf6
1 file changed
Lines changed: 44 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
2 | 3 | | |
3 | 4 | | |
4 | 5 | | |
| |||
13 | 14 | | |
14 | 15 | | |
15 | 16 | | |
| 17 | + | |
16 | 18 | | |
| 19 | + | |
17 | 20 | | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
18 | 25 | | |
19 | 26 | | |
20 | 27 | | |
| |||
27 | 34 | | |
28 | 35 | | |
29 | 36 | | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
30 | 42 | | |
31 | 43 | | |
32 | 44 | | |
| |||
295 | 307 | | |
296 | 308 | | |
297 | 309 | | |
298 | | - | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
299 | 324 | | |
300 | 325 | | |
301 | 326 | | |
| |||
305 | 330 | | |
306 | 331 | | |
307 | 332 | | |
308 | | - | |
| 333 | + | |
| 334 | + | |
309 | 335 | | |
310 | 336 | | |
311 | 337 | | |
| |||
330 | 356 | | |
331 | 357 | | |
332 | 358 | | |
333 | | - | |
| 359 | + | |
| 360 | + | |
334 | 361 | | |
335 | 362 | | |
336 | 363 | | |
337 | 364 | | |
338 | 365 | | |
339 | 366 | | |
340 | 367 | | |
341 | | - | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
342 | 382 | | |
343 | 383 | | |
344 | 384 | | |
| |||
0 commit comments