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