| 865 | } |
| 866 | |
| 867 | static 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 | |
| 879 | static int isSecureConn (const server_rec *s, const conn_rec *c) |
| 880 | { |
no outgoing calls
no test coverage detected