X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FMason.pm;h=bdae3938cf5bda6c34506f3aa54edd65a5d7753e;hb=4496a23e58b830db4c2d10ad17dfb0d531b15859;hp=9174ec3755d4799c4c13f66a04606fcaa334ace6;hpb=55a37d7100a678c2699e2bc42eb71c5b0420a1e1;p=freeside.git diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm index 9174ec375..bdae3938c 100644 --- a/FS/FS/Mason.pm +++ b/FS/FS/Mason.pm @@ -99,7 +99,7 @@ if ( -e $addl_handler_use_file ) { use Excel::Writer::XLSX; #use Excel::Writer::XLSX::Utility; #redundant with above - use Business::CreditCard 0.30; #for mask-aware cardtype() + use Business::CreditCard 0.35; #for new mastercard ranges and visa lengths use NetAddr::IP; use Net::MAC::Vendor; use Net::Ping; @@ -150,7 +150,8 @@ if ( -e $addl_handler_use_file ) { use FS::Report::Table; use FS::Report::Table::Monthly; use FS::Report::Table::Daily; - use FS::Report::Tax; + use FS::Report::Tax::ByName; + use FS::Report::Tax::All; use FS::TicketSystem; use FS::NetworkMonitoringSystem; use FS::Tron qw( tron_lint ); @@ -391,6 +392,8 @@ if ( -e $addl_handler_use_file ) { use FS::fiber_olt; use FS::olt_site; use FS::access_user_page_pref; + use FS::part_svc_msgcat; + use FS::saved_search; # Sammath Naur if ( $FS::Mason::addl_handler_use ) { @@ -560,7 +563,7 @@ if ( -e $addl_handler_use_file ) { } # end package HTML::Mason::Commands; -=head1 SUBROUTINE +=head1 SUBROUTINES =over 4 @@ -655,6 +658,35 @@ sub mason_interps { } +=item child_init + +Per-process Apache child initialization code. + +Calls srand() to re-seed Perl's PRNG so that multiple children do not generate +the same "random" numbers. + +Works around a Net::SSLeay connection error by creating and deleting an SSL +context, so subsequent connections do not error out with a CTX_new (900 NET OR +SSL ERROR). See http://bugs.debian.org/830152 + +=cut + +sub child_init { + #my ($pool, $server) = @_; #the child process pool (APR::Pool) and the server object (Apache2::ServerRec). + + srand(); + + #{ + use Net::SSLeay; + package Net::SSLeay; + initialize(); + my $bad_ctx = new_x_ctx(); + while ( ERR_get_error() ) {}; #print_errs('CTX_new'); + CTX_free($bad_ctx); + #} + +} + =back =head1 BUGS