| 131 | */ |
| 132 | |
| 133 | http_encryption_t /* O - Encryption settings */ |
| 134 | cupsEncryption(void) |
| 135 | { |
| 136 | _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */ |
| 137 | |
| 138 | |
| 139 | if (cg->encryption == (http_encryption_t)-1) |
| 140 | _cupsSetDefaults(); |
| 141 | |
| 142 | return (cg->encryption); |
| 143 | } |
| 144 | |
| 145 | |
| 146 | /* |