payloadPlaceholder returns the placeholder string for a given index.
(idx int)
| 3937 | |
| 3938 | // payloadPlaceholder returns the placeholder string for a given index. |
| 3939 | func payloadPlaceholder(idx int) string { |
| 3940 | return fmt.Sprintf("%s%d\x00", payloadPlaceholderPrefix, idx) |
| 3941 | } |
| 3942 | |
| 3943 | // resetMaps clears all result tracking maps before starting new requests. |
| 3944 | func resetMaps() { |
no outgoing calls