sslopt-case.h 1.83 KB
Newer Older
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1 2 3 4 5 6 7 8
/* Copyright (C) 2000 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
10 11 12 13 14 15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
16 17 18

#ifdef HAVE_OPENSSL
    case OPT_SSL_SSL:
19
      opt_use_ssl = 1;				/* true */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
20 21
      break;
    case OPT_SSL_KEY:
22
      opt_use_ssl = 1;				/* true */
salle@geopard.online.bg's avatar
salle@geopard.online.bg committed
23 24
/* QQ to be removed???      my_free(opt_ssl_key, MYF(MY_ALLOW_ZERO_PTR)); */
/* QQ to be removed???      opt_ssl_key = my_strdup(optarg, MYF(0)); */
25 26
      my_free(opt_ssl_key, MYF(MY_ALLOW_ZERO_PTR)); 
      opt_ssl_key = my_strdup(argument, MYF(0)); 
bk@work.mysql.com's avatar
bk@work.mysql.com committed
27 28
      break;
    case OPT_SSL_CERT:
29
      opt_use_ssl = 1;				/* true */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
30
      my_free(opt_ssl_cert, MYF(MY_ALLOW_ZERO_PTR));
31
      opt_ssl_cert = my_strdup(argument, MYF(0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
32 33
      break;
    case OPT_SSL_CA:
34
      opt_use_ssl = 1;				/* true */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
35
      my_free(opt_ssl_ca, MYF(MY_ALLOW_ZERO_PTR));
36
      opt_ssl_ca = my_strdup(argument, MYF(0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
37 38
      break;
    case OPT_SSL_CAPATH:
39
      opt_use_ssl = 1;				/* true */
40
      my_free(opt_ssl_capath, MYF(MY_ALLOW_ZERO_PTR));
41
      opt_ssl_capath = my_strdup(argument, MYF(0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
42
      break;
43 44 45
    case OPT_SSL_CIPHER:
      opt_use_ssl = 1;				/* true */
      my_free(opt_ssl_cipher, MYF(MY_ALLOW_ZERO_PTR));
46
      opt_ssl_cipher = my_strdup(argument, MYF(0));
47
      break;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
48
#endif