aboutsummaryrefslogtreecommitdiff
path: root/www/mod_ruby
diff options
context:
space:
mode:
Diffstat (limited to 'www/mod_ruby')
-rw-r--r--www/mod_ruby/files/patch-connection.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/www/mod_ruby/files/patch-connection.c b/www/mod_ruby/files/patch-connection.c
new file mode 100644
index 000000000000..88905bd70ef1
--- /dev/null
+++ b/www/mod_ruby/files/patch-connection.c
@@ -0,0 +1,27 @@
+--- connection.c.orig Fri Jul 16 11:16:29 2004
++++ connection.c Fri Sep 9 06:38:14 2005
+@@ -100,8 +100,12 @@
+ #ifdef APACHE2
+ return INT2NUM(conn->local_addr->port);
+ #else
++#ifdef APACHE6
++ return INT2NUM(ntohs(((struct sockaddr_in *)&conn->local_addr)->sin_port));
++#else
+ return INT2NUM(ntohs(conn->local_addr.sin_port));
+ #endif
++#endif
+ }
+
+ static VALUE connection_remote_port(VALUE self)
+@@ -112,7 +116,11 @@
+ #ifdef APACHE2
+ return INT2NUM(conn->remote_addr->port);
+ #else
++#ifdef APACHE6
++ return INT2NUM(ntohs(((struct sockaddr_in *)&conn->remote_addr)->sin_port));
++#else
+ return INT2NUM(ntohs(conn->remote_addr.sin_port));
++#endif
+ #endif
+ }
+