File: control

package info (click to toggle)
libapache-ssllookup-perl 2.00-04-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 208 kB
  • ctags: 19
  • sloc: perl: 209; ansic: 10; makefile: 8; sh: 4
file content (33 lines) | stat: -rw-r--r-- 1,403 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Source: libapache-ssllookup-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Christopher Hoskin <christopher.hoskin@gmail.com>
Build-Depends: debhelper (>= 9.20120312~),
 libapache2-mod-perl2-dev,
 apache2-dev,
 libapr1-dev,
 perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libapache-ssllookup-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libapache-ssllookup-perl.git
Homepage: http://search.cpan.org/dist/Apache-SSLLookup/
Testsuite: autopkgtest-pkg-perl

Package: libapache-ssllookup-perl
Architecture: any
Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends},
 libapache2-mod-perl2
Description: glue layer between Perl handlers and the mod_ssl public API
 Apache::SSLLookup is a glue layer between Perl handlers and the mod_ssl
 public API. Under normal circumstances, you would use $r->subprocess_env() to
 glean information about mod_ssl. for example,
 .
 $request_is_over_ssl = $r->subprocess_env('HTTPS');
 .
 however, this is only possible after mod_ssl runs its fixups - that is, Perl
 handlers can only accurately check the subprocess_env table for mod_ssl
 information in the PerlResponsePhase or later.
 .
 This module allows you to query mod_ssl directly via its public C API at any
 point in the request cycle. but without using C, of course.