mirror of
https://git.bakhai.co.in/FbIN/LibreY.git
synced 2025-11-05 12:31:30 +05:30
12 lines
320 B
PHP
12 lines
320 B
PHP
<?php
|
|
class IPRequest extends EngineRequest {
|
|
public function parse_results($response) {
|
|
return array(
|
|
"special_response" => array(
|
|
"response" => $_SERVER["REMOTE_ADDR"],
|
|
"source" => null
|
|
)
|
|
);
|
|
}
|
|
}
|
|
?>
|