Files
lneto/.gitignore
T
Pat Whittingslow a2970b923d add ipv6 to xnet.StackAsync (#107)
* add ipv6 to xnet.StackAsync

* dns improvements

* improve DNS workings of StackAsync

* add tentative ICMPv6

* work on prefixes and fix some small bugs, plan UDP/TCP6

* fix bugs in StackAsync and ipv4.Prefix.Contains

* update arpsubtable

* completely remove legacy internet.StackIP for StackIPv4/v6

* ipv4/ipv6 tcp/udp

* add TCP6/UDP6 dialing APIs

* add xnet.Stack6 interface

* more ipv6 integration into StackAsync; various tweaks to lneto and documentation+TODOs

* add stack6 tests

* replace netip.Prefix with ipv4.Prefix where it makes sense
2026-05-13 15:31:18 -03:00

69 lines
851 B
Plaintext

# Go workspaces.
go.work
go.work.sum
# Test binary, built with `go test -c`
*.test
# Dependency directories after running `go mod vendor`
vendor/
# Binaries for programs and plugins
*.elf
*.uf2
*.exe
*.exe~
*.dll
*.so
*.dylib
*.hex
*.wasm
# Profiling
*.pprof
# example binaries.
/tap
/httptap
/xcurl
/xnet
/httpclient
/httpserver
**/local*
/stack
**__debug_bin*
# `__debug_bin` Debug binary generated in VSCode when using the built-in debugger.
*bin
/gen-binary-bench
/bridge
# IDE
.vscode/
agents.md
*skill.md
# For local development and testing create `local` directories.
local
*.local
*local.md
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
*.cov
# Log files and common data formats.
*.log
*.Log
*.LOG
*.csv
*.tsv
*.dat
*.json
*.xlsx
*.xls
*.zip
*.gz
*.tar
*.txt
# If running a python script.
*/__pycache__/*