LibreY

- privacy respecting meta search engine
git clone git://git.acid.vegas/LibreY.git
Log | Files | Refs | Archive | README | LICENSE

ip.php (320B)

      1 <?php
      2     class IPRequest extends EngineRequest {
      3         public function parse_results($response) {
      4             return array(
      5                 "special_response" => array(
      6                     "response" => $_SERVER["REMOTE_ADDR"],
      7                     "source" => null
      8                 )
      9             );
     10         }
     11     }
     12 ?>