We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4788209 commit 5c91dafCopy full SHA for 5c91daf
1 file changed
src/SuperSocket.MySQL/MySQLConnection.cs
@@ -67,9 +67,10 @@ public async Task ConnectAsync(CancellationToken cancellationToken = default)
67
// Prepare handshake response
68
var handshakeResponse = new HandshakeResponsePacket
69
{
70
- CapabilityFlags = (uint)(ClientCapabilities.CLIENT_PROTOCOL_41 |
71
- ClientCapabilities.CLIENT_SECURE_CONNECTION |
72
- ClientCapabilities.CLIENT_PLUGIN_AUTH),
+ CapabilityFlags = (uint)(ClientCapabilities.CLIENT_PROTOCOL_41
+ | ClientCapabilities.CLIENT_SECURE_CONNECTION
+ | ClientCapabilities.CLIENT_PLUGIN_AUTH
73
+ | ClientCapabilities.CLIENT_DEPRECATE_EOF),
74
MaxPacketSize = 16777216, // 16MB
75
CharacterSet = 0x21, // utf8_general_ci
76
Username = _userName,
0 commit comments