poco/ApacheConnector
Edson A. Soares 7121b92e2a Fix ".. has no member named ... compile error" (#1938)
* Fix ".. has no member named ... compile error" by renaming apache conn_rec
attributes

 - conn_rec attributes remote_ip and remote_addr were replaced by client_ip
 and client_addr once they have been renamed in Apache 2.4
 - a server_rec pointer must be passed to ap_log_error() since apache 2.4,
 therefore, a change was necessary at the ap_log_error log function.
 A null pointer has been passed for avoiding deeper changes at the function.
 - the smart pointer auto_ptr was replaced by unique_ptr once it was made
 deprecated in C++11 standard, it has been replaced by unique_ptr.

* Add the properly #ifdef directives for backward compatibility purposes

 - Adding proper #ifdef preprocessor directives to keeping backward
 compatibility with older apache versions.

* Update ApacheConnector.cpp
2017-10-17 12:31:30 -05:00
..
2012-04-23 01:14:34 +00:00
2017-09-09 10:50:32 +02:00
2017-09-20 22:13:19 -05:00
2012-04-29 18:52:25 +00:00
2012-04-23 01:14:34 +00:00
2017-09-09 10:50:32 +02:00