MCPcopy Create free account
hub / github.com/apache/httpd / isSecureConnEx

Function isSecureConnEx

modules/arch/netware/mod_nw_ssl.c:867–877  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

865}
866
867static int isSecureConnEx (const server_rec *s, const conn_rec *c, const apr_table_t *t)
868{
869 char port[8];
870
871 itoa((c->local_addr)->port, port, 10);
872 if (!apr_table_do(compare_ipports, (void*)c, t, port, NULL)) {
873 return 1;
874 }
875
876 return 0;
877}
878
879static int isSecureConn (const server_rec *s, const conn_rec *c)
880{

Callers 2

isSecureConnFunction · 0.85
isSecureConnUpgradeableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected