@@ -94,39 +94,39 @@ class client_options {
94
94
// / Set the filename of the certificate to load for the SSL connection for
95
95
// / verification.
96
96
client_options&openssl_certificate (string_typeconst & v) {
97
- openssl_certificate_ =make_optional (v);
97
+ openssl_certificate_ =boost:: make_optional (v);
98
98
return *this ;
99
99
}
100
100
101
101
// / Set the directory for which the certificate authority files are located.
102
102
client_options&openssl_verify_path (string_typeconst & v) {
103
- openssl_verify_path_ =make_optional (v);
103
+ openssl_verify_path_ =boost:: make_optional (v);
104
104
return *this ;
105
105
}
106
106
107
107
// / Set the filename of the certificate to use for client-side SSL session
108
108
// / establishment.
109
109
client_options&openssl_certificate_file (string_typeconst & v) {
110
- openssl_certificate_file_ =make_optional (v);
110
+ openssl_certificate_file_ =boost:: make_optional (v);
111
111
return *this ;
112
112
}
113
113
114
114
// / Set the filename of the private key to use for client-side SSL session
115
115
// / establishment.
116
116
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);
118
118
return *this ;
119
119
}
120
120
121
121
// / Set the ciphers to support for SSL negotiation.
122
122
client_options&openssl_ciphers (string_typeconst & v) {
123
- openssl_ciphers_ =make_optional (v);
123
+ openssl_ciphers_ =boost:: make_optional (v);
124
124
return *this ;
125
125
}
126
126
127
127
// / Set the hostname for SSL SNI hostname support.
128
128
client_options&openssl_sni_hostname (string_typeconst & v) {
129
- openssl_sni_hostname_ =make_optional (v);
129
+ openssl_sni_hostname_ =boost:: make_optional (v);
130
130
return *this ;
131
131
}
132
132