dougm       02/05/25 11:36:37

  Modified:    xs/tables/current/Apache FunctionTable.pm StructureTable.pm
               xs/tables/current/ModPerl FunctionTable.pm
  Log:
  sync
  
  Revision  Changes    Path
  1.38      +184 -4    modperl-2.0/xs/tables/current/Apache/FunctionTable.pm
  
  Index: FunctionTable.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/tables/current/Apache/FunctionTable.pm,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- FunctionTable.pm  18 May 2002 23:56:54 -0000      1.37
  +++ FunctionTable.pm  25 May 2002 18:36:36 -0000      1.38
  @@ -2,7 +2,7 @@
   
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   # ! WARNING: generated by Apache::ParseSource/0.02
  -# !          Sat May 18 16:24:44 2002
  +# !          Sat May 25 11:12:00 2002
   # !          do NOT edit, any changes will be lost !
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   
  @@ -3032,7 +3032,7 @@
       ]
     },
     {
  -    'return_type' => 'apr_status_t',
  +    'return_type' => 'int',
       'name' => 'ap_mpm_pod_check',
       'args' => [
         {
  @@ -3062,6 +3062,10 @@
         {
           'type' => 'int',
           'name' => 'num'
  +      },
  +      {
  +        'type' => 'int',
  +        'name' => 'graceful'
         }
       ]
     },
  @@ -3086,6 +3090,20 @@
         {
           'type' => 'ap_pod_t *',
           'name' => 'pod'
  +      },
  +      {
  +        'type' => 'int',
  +        'name' => 'graceful'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'void',
  +    'name' => 'ap_mpm_rewrite_args',
  +    'args' => [
  +      {
  +        'type' => 'process_rec *',
  +        'name' => 'arg0'
         }
       ]
     },
  @@ -3602,6 +3620,136 @@
       ]
     },
     {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_queue_info_create',
  +    'args' => [
  +      {
  +        'type' => 'fd_queue_info_t **',
  +        'name' => 'queue_info'
  +      },
  +      {
  +        'type' => 'apr_pool_t *',
  +        'name' => 'pool'
  +      },
  +      {
  +        'type' => 'int',
  +        'name' => 'max_idlers'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_queue_info_set_idle',
  +    'args' => [
  +      {
  +        'type' => 'fd_queue_info_t *',
  +        'name' => 'queue_info'
  +      },
  +      {
  +        'type' => 'apr_pool_t *',
  +        'name' => 'pool_to_recycle'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_queue_info_term',
  +    'args' => [
  +      {
  +        'type' => 'fd_queue_info_t *',
  +        'name' => 'queue_info'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_queue_info_wait_for_idler',
  +    'args' => [
  +      {
  +        'type' => 'fd_queue_info_t *',
  +        'name' => 'queue_info'
  +      },
  +      {
  +        'type' => 'apr_pool_t **',
  +        'name' => 'recycled_pool'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_queue_init',
  +    'args' => [
  +      {
  +        'type' => 'fd_queue_t *',
  +        'name' => 'queue'
  +      },
  +      {
  +        'type' => 'int',
  +        'name' => 'queue_capacity'
  +      },
  +      {
  +        'type' => 'apr_pool_t *',
  +        'name' => 'a'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_queue_interrupt_all',
  +    'args' => [
  +      {
  +        'type' => 'fd_queue_t *',
  +        'name' => 'queue'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_queue_pop',
  +    'args' => [
  +      {
  +        'type' => 'fd_queue_t *',
  +        'name' => 'queue'
  +      },
  +      {
  +        'type' => 'apr_socket_t **',
  +        'name' => 'sd'
  +      },
  +      {
  +        'type' => 'apr_pool_t **',
  +        'name' => 'p'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_queue_push',
  +    'args' => [
  +      {
  +        'type' => 'fd_queue_t *',
  +        'name' => 'queue'
  +      },
  +      {
  +        'type' => 'apr_socket_t *',
  +        'name' => 'sd'
  +      },
  +      {
  +        'type' => 'apr_pool_t *',
  +        'name' => 'p'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_queue_term',
  +    'args' => [
  +      {
  +        'type' => 'fd_queue_t *',
  +        'name' => 'queue'
  +      }
  +    ]
  +  },
  +  {
       'return_type' => 'apr_time_t',
       'name' => 'ap_rationalize_mtime',
       'args' => [
  @@ -3638,6 +3786,24 @@
       ]
     },
     {
  +    'return_type' => 'apr_status_t',
  +    'name' => 'ap_read_pid',
  +    'args' => [
  +      {
  +        'type' => 'apr_pool_t *',
  +        'name' => 'p'
  +      },
  +      {
  +        'type' => 'const char *',
  +        'name' => 'filename'
  +      },
  +      {
  +        'type' => 'pid_t *',
  +        'name' => 'mypid'
  +      }
  +    ]
  +  },
  +  {
       'return_type' => 'request_rec *',
       'name' => 'ap_read_request',
       'args' => [
  @@ -4973,6 +5139,20 @@
       'args' => []
     },
     {
  +    'return_type' => 'int',
  +    'name' => 'ap_signal_server',
  +    'args' => [
  +      {
  +        'type' => 'int *',
  +        'name' => 'arg0'
  +      },
  +      {
  +        'type' => 'apr_pool_t *',
  +        'name' => 'arg1'
  +      }
  +    ]
  +  },
  +  {
       'return_type' => 'void',
       'name' => 'ap_single_module_configure',
       'args' => [
  @@ -5948,7 +6128,7 @@
       'args' => [
         {
           'type' => 'apr_bucket_brigade *',
  -        'name' => 'b'
  +        'name' => 'bb'
         },
         {
           'type' => 'apr_brigade_flush',
  @@ -6785,7 +6965,7 @@
       'name' => 'apr_date_parse_rfc',
       'args' => [
         {
  -        'type' => 'char *',
  +        'type' => 'const char *',
           'name' => 'date'
         }
       ]
  
  
  
  1.34      +2 -6      modperl-2.0/xs/tables/current/Apache/StructureTable.pm
  
  Index: StructureTable.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/tables/current/Apache/StructureTable.pm,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- StructureTable.pm 18 May 2002 23:56:54 -0000      1.33
  +++ StructureTable.pm 25 May 2002 18:36:36 -0000      1.34
  @@ -2,7 +2,7 @@
   
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   # ! WARNING: generated by Apache::ParseSource/0.02
  -# !          Sat May 18 16:24:45 2002
  +# !          Sat May 25 11:12:01 2002
   # !          do NOT edit, any changes will be lost !
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   
  @@ -1075,10 +1075,6 @@
         {
           'type' => 'apr_pool_t *',
           'name' => 'p'
  -      },
  -      {
  -        'type' => 'apr_sockaddr_t *',
  -        'name' => 'sa'
         }
       ]
     },
  @@ -2037,7 +2033,7 @@
       'elts' => [
         {
           'type' => 'const char *(*)(const apr_strmatch_pattern *this_pattern,
  -                            const char *s, apr_size_t slen)',
  +                           const char *s, apr_size_t slen)',
           'name' => 'compare'
         },
         {
  
  
  
  1.69      +23 -1     modperl-2.0/xs/tables/current/ModPerl/FunctionTable.pm
  
  Index: FunctionTable.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/tables/current/ModPerl/FunctionTable.pm,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -r1.68 -r1.69
  --- FunctionTable.pm  24 May 2002 05:13:07 -0000      1.68
  +++ FunctionTable.pm  25 May 2002 18:36:36 -0000      1.69
  @@ -2,7 +2,7 @@
   
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   # ! WARNING: generated by ModPerl::ParseSource/0.01
  -# !          Thu May 23 22:06:43 2002
  +# !          Sat May 25 11:12:06 2002
   # !          do NOT edit, any changes will be lost !
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   
  @@ -5234,6 +5234,28 @@
         {
           'type' => 'PerlInterpreter *',
           'name' => 'my_perl'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'int',
  +    'name' => 'mpxs_apr_password_validate',
  +    'attr' => [
  +      'static',
  +      '__inline__'
  +    ],
  +    'args' => [
  +      {
  +        'type' => 'PerlInterpreter *',
  +        'name' => 'my_perl'
  +      },
  +      {
  +        'type' => 'const char *',
  +        'name' => 'passwd'
  +      },
  +      {
  +        'type' => 'const char *',
  +        'name' => 'hash'
         }
       ]
     },
  
  
  


Reply via email to