[EMAIL PROTECTED] Apache 1.3 to 2.X module porting: function name/argument/return/include changes?

2006-05-04 Thread JupiterHost.Net
In porting a module from apache 1.3 to 2.0/2.2 I'm seeing these apache specific elements: request_rec * r: static int foo (request_rec * r) r-uri r-server-server_hostname r-pool ap_getword: w = ap_getword(r-pool, dnam, '/'); /* previosuly: char *name = r-uri; ... dname = name + 2; */

Re: [EMAIL PROTECTED] Apache 1.3 to 2.X module porting: function name/argument/return/include changes?

2006-05-04 Thread JupiterHost.Net
I've commented on each one with what I have deduced so far, any insight into if I am correct or not or are missing something would be awesome :) JupiterHost.Net wrote: In porting a module from apache 1.3 to 2.0/2.2 I'm seeing these apache specific elements: request_rec * r: static int foo