dougm       01/11/15 10:19:56

  Modified:    xs/maps  apache_structures.map modperl_functions.map
               xs/tables/current/ModPerl FunctionTable.pm
  Log:
  implement an Apache::Connection::client_socket method now that it has moved out of 
conn_rec
  
  Revision  Changes    Path
  1.11      +0 -1      modperl-2.0/xs/maps/apache_structures.map
  
  Index: apache_structures.map
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/maps/apache_structures.map,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- apache_structures.map     2001/10/05 23:39:31     1.10
  +++ apache_structures.map     2001/11/15 18:19:56     1.11
  @@ -98,7 +98,6 @@
      pool
      base_server
   >  vhost_lookup_data
  -   client_socket
      local_addr
      remote_addr
      remote_ip
  
  
  
  1.29      +3 -0      modperl-2.0/xs/maps/modperl_functions.map
  
  Index: modperl_functions.map
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/maps/modperl_functions.map,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- modperl_functions.map     2001/11/13 17:42:49     1.28
  +++ modperl_functions.map     2001/11/15 18:19:56     1.29
  @@ -53,6 +53,9 @@
   PACKAGE=Apache
    server_rec *:DEFINE_server | | SV *:classname=Nullsv
   
  +MODULE=Apache::Connection
  + mpxs_Apache__Connection_client_socket | | c, s=NULL
  +
   MODULE=Apache::Filter
    modperl_filter_attributes | MPXS_ | ... | MODIFY_CODE_ATTRIBUTES
   
  
  
  
  1.50      +19 -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.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- FunctionTable.pm  2001/11/15 17:52:00     1.49
  +++ FunctionTable.pm  2001/11/15 18:19:56     1.50
  @@ -2,7 +2,7 @@
   
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   # ! WARNING: generated by ModPerl::ParseSource/0.01
  -# !          Thu Nov 15 09:46:16 2001
  +# !          Thu Nov 15 10:29:32 2001
   # !          do NOT edit, any changes will be lost !
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   
  @@ -4006,6 +4006,24 @@
         {
           'type' => 'SV *',
           'name' => 'portsv'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'apr_socket_t *',
  +    'name' => 'mpxs_Apache__Connection_client_socket',
  +    'args' => [
  +      {
  +        'type' => 'PerlInterpreter *',
  +        'name' => 'my_perl'
  +      },
  +      {
  +        'type' => 'conn_rec *',
  +        'name' => 'c'
  +      },
  +      {
  +        'type' => 'apr_socket_t *',
  +        'name' => 's'
         }
       ]
     },
  
  
  


Reply via email to