| 79 | const nonFDEExtraHeadersSize = 0 |
| 80 | |
| 81 | type v4EventParserMap struct { |
| 82 | extraHeadersSize int |
| 83 | checksumSize int |
| 84 | numSupportedEventTypes int |
| 85 | |
| 86 | // TODO(patrick): maybe switch from map to array if lookup shows up on profile |
| 87 | parsers map[mysql_proto.LogEventType_Type]V4EventParser |
| 88 | } |
| 89 | |
| 90 | // NewV4EventParserMap returns an initialize V4EventParserMap with all handled |
| 91 | // event types' parsers registered. |
nothing calls this directly
no outgoing calls
no test coverage detected