Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ".. has no member named ... compile error" #1938

Merged
merged 3 commits into from
Oct 17, 2017

Commits on Oct 16, 2017

  1. Fix ".. has no member named ... compile error" by renaming apache con…

    …n_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.
    edson-a-soares committed Oct 16, 2017
    Configuration menu
    Copy the full SHA
    acdd69c View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2017

  1. Add the properly #ifdef directives for backward compatibility purposes

     - Adding proper #ifdef preprocessor directives to keeping backward
     compatibility with older apache versions.
    edson-a-soares committed Oct 17, 2017
    Configuration menu
    Copy the full SHA
    da6d3df View commit details
    Browse the repository at this point in the history
  2. Update ApacheConnector.cpp

    aleks-f committed Oct 17, 2017
    Configuration menu
    Copy the full SHA
    87556aa View commit details
    Browse the repository at this point in the history