| 297 | */ |
| 298 | |
| 299 | void |
| 300 | cupsSetEncryption(http_encryption_t e) /* I - New encryption preference */ |
| 301 | { |
| 302 | _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */ |
| 303 | |
| 304 | |
| 305 | cg->encryption = e; |
| 306 | |
| 307 | if (cg->http) |
| 308 | httpEncryption(cg->http, e); |
| 309 | } |
| 310 | |
| 311 | |
| 312 | /* |