dougm       01/05/08 11:04:39

  Added:       src/modules/perl modperl_cgi.c modperl_cgi.h
  Log:
  module for cgi emulation related routines
  
  Revision  Changes    Path
  1.1                  modperl-2.0/src/modules/perl/modperl_cgi.c
  
  Index: modperl_cgi.c
  ===================================================================
  #include "mod_perl.h"
  
  MP_INLINE int modperl_cgi_header_parse(request_rec *r, char *buffer,
                                         const char **bodytext)
  {
      int status;
      int termarg;
  
      if (!buffer) {
          return DECLINED;
      }
  
      status = ap_scan_script_header_err_strs(r, NULL, bodytext,
                                              &termarg, buffer, NULL);
  
      return status;
  }
  
  
  
  1.1                  modperl-2.0/src/modules/perl/modperl_cgi.h
  
  Index: modperl_cgi.h
  ===================================================================
  #ifndef MODPERL_CGI_H
  #define MODPERL_CGI_H
  
  MP_INLINE int modperl_cgi_header_parse(request_rec *r, char *buffer,
                                         const char **bodytext);
  
  #endif /* MODPERL_CGI_H */
  
  
  

Reply via email to