Roy T. Fielding wrote: > > > c = ap_strchr_c(url, ':'); > > if (c == NULL || c[1] != '/' || c[2] != '/' || c[3] == '\0') > > return NULL; > > BTW, unless url is somehow limited to http and ftp, the above > is bad code. The proxy should be able to handle arbitrary > schemes (eventually), which means requiring scheme://host > is bogus. >
The current code does make that restriction, but yes, it may be too limiting... Of course, this means that the workers would also need to be not so restricted as well :) -- ======================================================================= Jim Jagielski [|] [EMAIL PROTECTED] [|] http://www.jaguNET.com/ "If you can dodge a wrench, you can dodge a ball."
