stas 2003/12/17 11:46:15
Modified: xs/maps apr_structures.map . Changes Log: deprecated APR::SockAddr::port_get()/APR::SockAddr::port_set() replaced with direct access to the port record via APR::SockAddr::port(). Revision Changes Path 1.10 +11 -11 modperl-2.0/xs/maps/apr_structures.map Index: apr_structures.map =================================================================== RCS file: /home/cvs/modperl-2.0/xs/maps/apr_structures.map,v retrieving revision 1.9 retrieving revision 1.10 diff -u -u -r1.9 -r1.10 --- apr_structures.map 17 Nov 2003 23:27:11 -0000 1.9 +++ apr_structures.map 17 Dec 2003 19:46:15 -0000 1.10 @@ -48,18 +48,18 @@ - filehand </apr_finfo_t> -!<apr_sockaddr_t> - pool - hostname - servname +<apr_sockaddr_t> +- pool +- hostname +- servname port - sa - salen - ipaddr_len - addr_str_len - ipaddr_ptr - next - family +- sa +- salen +- ipaddr_len +- addr_str_len +- ipaddr_ptr +- next +- family </apr_sockaddr_t> !<apr_proc_t> 1.285 +4 -0 modperl-2.0/Changes Index: Changes =================================================================== RCS file: /home/cvs/modperl-2.0/Changes,v retrieving revision 1.284 retrieving revision 1.285 diff -u -u -r1.284 -r1.285 --- Changes 16 Dec 2003 03:48:11 -0000 1.284 +++ Changes 17 Dec 2003 19:46:15 -0000 1.285 @@ -61,6 +61,10 @@ where not all files were being installed under a relative Apache2 subdirectory when MP_INST_APACHE2 was specified [Randy Kobes]. +deprecated APR::SockAddr::port_get()/APR::SockAddr::port_set() +replaced with direct access to the port record via +APR::SockAddr::port(). [Stas] + remove deprecated APR features: APR::URI::default_port_for_scheme(), APR::SockAddr::ip_set(), APR::SockAddr::port_get(), APR::SockAddr::port_set(), and APR::NO_TIMEOUT.