blob: ce57e4f746db1f11a3b6997c2747cfeb4bf3eaa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
-- source include/have_ssl_communication.inc
# Repeat connect/disconnect
let $i=100;
disable_connect_log;
while ($i)
{
connect (test_con1,localhost,root,,,,,SSL);
disconnect test_con1;
dec $i;
}
enable_connect_log;
echo completed;
## This test file is for testing encrypted communication only, not other
## encryption routines that the SSL library happens to provide!
|