Commit 491f63f
Fix DNS PSF syntax error - use parentheses instead of brackets
The PSF parser expects FIXED_BYTES(...) with parentheses, not square
brackets. This was causing "Expected LeftParen, got LeftBracket" errors
when loading the DNS protocol.
Fixed in protocols/dns/dns.psf:
- Line 77: FIXED_BYTES[...] → FIXED_BYTES(...)
- Line 89: FIXED_BYTES[...] → FIXED_BYTES(...)
This allows the DNS protocol to work on port 53 for DNS-based censorship
circumvention.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent 2c2a5a1 commit 491f63f
2 files changed
+2
-2
lines changedBinary file not shown.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
77 | | - | |
| 77 | + | |
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
| |||
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
89 | | - | |
| 89 | + | |
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
| |||
0 commit comments