(self)
| 189 | return self._data[0] == 0xFE and len(self._data) < 9 |
| 190 | |
| 191 | def is_auth_switch_request(self): |
| 192 | # http://dev.mysql.com/doc/internals/en/connection-phase-packets.html#packet-Protocol::AuthSwitchRequest |
| 193 | return self._data[0] == 0xFE |
| 194 | |
| 195 | def is_extra_auth_data(self): |
| 196 | # https://dev.mysql.com/doc/internals/en/successful-authentication.html |
no outgoing calls
no test coverage detected