Changeset 756 for branches/stable/dns-rpc.cgi
- Timestamp:
- 06/13/17 13:58:57 (8 years ago)
- Location:
- branches/stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable
- Property svn:mergeinfo changed
/trunk merged: 722-724,727-749
- Property svn:mergeinfo changed
-
branches/stable/dns-rpc.cgi
r725 r756 3 3 ## 4 4 # $Id$ 5 # Copyright 2012 ,2013Kris Deugau <kdeugau@deepnet.cx>5 # Copyright 2012-2016 Kris Deugau <kdeugau@deepnet.cx> 6 6 # 7 7 # This program is free software: you can redistribute it and/or modify … … 115 115 116 116 my $reqcnt = 0; 117 118 while (FCGI::accept >= 0) { 117 my $req = FCGI::Request(); 118 119 while ($req->Accept() >= 0) { 119 120 my $res = Frontier::Responder->new( 120 121 methods => $methods … … 200 201 my $modflag = 0; 201 202 # order by most common change. host should be first, due to rDNS RPC calls 202 for my $field qw(host type val) {203 for my $field (qw(host type val)) { 203 204 return 1 if ( 204 205 defined($newrec->{$field}) &&
Note:
See TracChangeset
for help on using the changeset viewer.