Files
lneto/.gitignore
T
Pat Whittingslow bf2d07d9f0 HTTP server example and DHCP Server rewrite (#38)
* improvements to dhcpv4 server

* begin adding examples/httpserver

* add better VLAN tagging methods

* pcap: add error printing; fix bug in CRC

* ipv4: ToS and Flags construction and flag manipulation improvements

* add dhcp interception to httptap and improve httpserver example
2026-02-18 16:48:30 -03:00

64 lines
798 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
# 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
/bridge
# IDE
.vscode/
agents.md
# For local development and testing create `local` directories.
local
# 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__/*