• Home
  • Raw
  • Download

Lines Matching refs:encryption

53 				     http_encryption_t encryption,
455 http_encryption_t encryption, /* I - Type of encryption to use */ in httpConnect2() argument
463 …ocking=%d, msec=%d, cancel=%p)", host, port, (void *)addrlist, family, encryption, blocking, msec,… in httpConnect2()
469 if ((http = http_create(host, port, addrlist, family, encryption, blocking, in httpConnect2()
503 http_encryption_t encryption) /* I - Type of encryption to use */ in httpConnectEncrypt() argument
506 host, port, encryption)); in httpConnectEncrypt()
508 return (httpConnect2(host, port, NULL, AF_UNSPEC, encryption, 1, 30000, in httpConnectEncrypt()
559 http->encryption = e; in httpEncryption()
561 if ((http->encryption == HTTP_ENCRYPTION_ALWAYS && !http->tls) || in httpEncryption()
562 (http->encryption == HTTP_ENCRYPTION_NEVER && http->tls)) in httpEncryption()
564 else if (http->encryption == HTTP_ENCRYPTION_REQUIRED && !http->tls) in httpEncryption()
574 http->encryption = e; in httpEncryption()
925 return (http ? http->encryption : HTTP_ENCRYPTION_IF_REQUESTED); in httpGetEncryption()
2455 if (http->encryption == HTTP_ENCRYPTION_ALWAYS) in httpReconnect2()
2468 else if (http->encryption == HTTP_ENCRYPTION_REQUIRED && !http->tls_upgrade) in httpReconnect2()
3974 http_encryption_t encryption, /* I - Encryption to use */ in http_create() argument
3983 …tion=%d, blocking=%d, mode=%d)", host, port, (void *)addrlist, family, encryption, blocking, mode)… in http_create()
4039 http->encryption = HTTP_ENCRYPTION_ALWAYS; in http_create()
4041 http->encryption = encryption; in http_create()
4432 if (http->encryption == HTTP_ENCRYPTION_REQUIRED && !http->tls) in http_send()