a go dns packet parser

add tangled pipelines

authored by seiso.moe and committed by

noreply 55466f8d ed62ad50

+24 -1
+12
.tangled/lint.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + 4 + dependencies: 5 + nix-pkgs: 6 + - go 7 + 8 + steps: 9 + - name: "go fmt" 10 + command: | 11 + unformatted=$(gofmt -l .) 12 + test -z "$unformatted" || (echo "$unformatted" && exit 1)
+11
.tangled/test.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + 4 + dependencies: 5 + nixpkgs: 6 + - go 7 + 8 + steps: 9 + - name: run all tests 10 + command: | 11 + go test -v ./...
+1 -1
message_test.go
··· 226 226 }, 227 227 }, 228 228 EDNSVersion: 0x64, 229 - UDPSize: 0x4d0, 229 + UDPSize: 0x4d0, 230 230 }, 231 231 }, 232 232 }