@@ -94,39 +94,39 @@ class client_options {
9494// / Set the filename of the certificate to load for the SSL connection for
9595// / verification.
9696 client_options&openssl_certificate (string_typeconst & v) {
97- openssl_certificate_ =make_optional (v);
97+ openssl_certificate_ =boost:: make_optional (v);
9898return *this ;
9999 }
100100
101101// / Set the directory for which the certificate authority files are located.
102102 client_options&openssl_verify_path (string_typeconst & v) {
103- openssl_verify_path_ =make_optional (v);
103+ openssl_verify_path_ =boost:: make_optional (v);
104104return *this ;
105105 }
106106
107107// / Set the filename of the certificate to use for client-side SSL session
108108// / establishment.
109109 client_options&openssl_certificate_file (string_typeconst & v) {
110- openssl_certificate_file_ =make_optional (v);
110+ openssl_certificate_file_ =boost:: make_optional (v);
111111return *this ;
112112 }
113113
114114// / Set the filename of the private key to use for client-side SSL session
115115// / establishment.
116116 client_options&openssl_private_key_file (string_typeconst & v) {
117- openssl_private_key_file_ =make_optional (v);
117+ openssl_private_key_file_ =boost:: make_optional (v);
118118return *this ;
119119 }
120120
121121// / Set the ciphers to support for SSL negotiation.
122122 client_options&openssl_ciphers (string_typeconst & v) {
123- openssl_ciphers_ =make_optional (v);
123+ openssl_ciphers_ =boost:: make_optional (v);
124124return *this ;
125125 }
126126
127127// / Set the hostname for SSL SNI hostname support.
128128 client_options&openssl_sni_hostname (string_typeconst & v) {
129- openssl_sni_hostname_ =make_optional (v);
129+ openssl_sni_hostname_ =boost:: make_optional (v);
130130return *this ;
131131 }
132132