Ignore:
Timestamp:
06/13/17 13:58:57 (7 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Merge /trunk through r749 for 1.4.0

Location:
branches/stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/stable

  • branches/stable/dns-rpc.cgi

    r725 r756  
    33##
    44# $Id$
    5 # Copyright 2012,2013 Kris Deugau <kdeugau@deepnet.cx>
     5# Copyright 2012-2016 Kris Deugau <kdeugau@deepnet.cx>
    66#
    77#    This program is free software: you can redistribute it and/or modify
     
    115115
    116116my $reqcnt = 0;
    117 
    118 while (FCGI::accept >= 0) {
     117my $req = FCGI::Request();
     118
     119while ($req->Accept() >= 0) {
    119120  my $res = Frontier::Responder->new(
    120121        methods => $methods
     
    200201  my $modflag = 0;
    201202  # 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)) {
    203204    return 1 if (
    204205        defined($newrec->{$field}) &&
Note: See TracChangeset for help on using the changeset viewer.