dougm 00/12/19 23:02:49
Modified: . Changes
src/modules/perl Apache.xs
Log:
allow modification of $r->hostname
Revision Changes Path
1.553 +3 -0 modperl/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl/Changes,v
retrieving revision 1.552
retrieving revision 1.553
diff -u -r1.552 -r1.553
--- Changes 2000/12/20 06:47:45 1.552
+++ Changes 2000/12/20 07:02:48 1.553
@@ -10,6 +10,9 @@
=item 1.24_02-dev
+allow modification of $r->hostname
+[Jim Winstead <[EMAIL PROTECTED]>]
+
allow Makefile.PL to build mod_perl on Win32 using VC++
[Randy Kobes <[EMAIL PROTECTED]>]
1.116 +2 -2 modperl/src/modules/perl/Apache.xs
Index: Apache.xs
===================================================================
RCS file: /home/cvs/modperl/src/modules/perl/Apache.xs,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- Apache.xs 2000/10/03 18:19:13 1.115
+++ Apache.xs 2000/12/20 07:02:49 1.116
@@ -1443,11 +1443,11 @@
RETVAL
char *
-hostname(r)
+hostname(r, ...)
Apache r
CODE:
- RETVAL = (char *)r->hostname;
+ get_set_PVp(r->hostname,r->pool);
OUTPUT:
RETVAL