diff options
author | unknown <peter@mysql.com> | 2002-10-19 23:18:31 +0400 |
---|---|---|
committer | unknown <peter@mysql.com> | 2002-10-19 23:18:31 +0400 |
commit | 48edd0acae1154fce882e68a370fa630b1528390 (patch) | |
tree | ce2e903012ec410866da6bb9f726df18dccb0029 /include/mysql_com.h | |
parent | c69223d9be61030fd263eb028bac834080e43f37 (diff) | |
download | mariadb-git-48edd0acae1154fce882e68a370fa630b1528390.tar.gz |
More work on secure connection protocol. commited in order to do the sync with new large pushed
bunch.
client/insert_test.c:
Fix function call
client/select_test.c:
Fix function call
include/mysql_com.h:
New flag defined for secure connection handling
sql/mysqld.cc:
Add flag used for connection
sql/sql_acl.cc:
Partial code to find out needed connection flag based on password format
Diffstat (limited to 'include/mysql_com.h')
-rw-r--r-- | include/mysql_com.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h index 3ebf9fc2120..bc273750e3a 100644 --- a/include/mysql_com.h +++ b/include/mysql_com.h @@ -97,6 +97,7 @@ enum enum_server_command #define CLIENT_IGNORE_SIGPIPE 4096 /* IGNORE sigpipes */ #define CLIENT_TRANSACTIONS 8192 /* Client knows about transactions */ #define CLIENT_PROTOCOL_41 16384 /* New 4.1 protocol */ +#define CLIENT_SECURE_CONNECTION 32768 /* New 4.1 authentication */ #define SERVER_STATUS_IN_TRANS 1 /* Transaction has started */ #define SERVER_STATUS_AUTOCOMMIT 2 /* Server in auto_commit mode */ |