-
Notifications
You must be signed in to change notification settings - Fork 1.2k
dns/dnsmessage: use map[string]uint16 instead of map[string]int #192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This PR (HEAD: e04b451) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/net/+/528955. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Mateusz Poliwczak: Patch Set 1: Commit-Queue+1 Run-TryBot+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Mateusz Poliwczak: Patch Set 1: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Go LUCI: Patch Set 1: CV cannot start a Run for Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Go LUCI: Patch Set 1: LUCI-TryBot-Result-1 Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Mateusz Poliwczak: Patch Set 1: -Run-TryBot Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Mateusz Poliwczak: Patch Set 1: Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Gopher Robot: Patch Set 1: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Gopher Robot: Patch Set 1: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Ian Lance Taylor: Patch Set 1: Auto-Submit+1 Code-Review+2 Commit-Queue+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Go LUCI: Patch Set 1: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2023-09-18T22:34:24Z","revision":"8f8f41776b9d90db7fe4d7991b2e6368d24f8477"} Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Ian Lance Taylor: Patch Set 1: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Go LUCI: Patch Set 1: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
Message from Go LUCI: Patch Set 1: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/528955. |
The compression pointer is limited to 14 bits, so there is no need to use int, uint16 is fine. Change-Id: I2276cbf63761e26a7e8590f0337930db87895ea5 GitHub-Last-Rev: e04b451 GitHub-Pull-Request: #192 Reviewed-on: https://go-review.googlesource.com/c/net/+/528955 Reviewed-by: Matthew Dempsky <[email protected]> Run-TryBot: Mateusz Poliwczak <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
This PR is being closed because golang.org/cl/528955 has been merged. |
The compression pointer is limited to 14 bits, so there is no
need to use int, uint16 is fine.