mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
20 lines
344 B
PHP
20 lines
344 B
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
function extAuth($user, $pass, &$userId = 0, &$userGroup = -1)
|
|
{
|
|
/*
|
|
insert some auth mechanism here
|
|
|
|
see defines for usable return values
|
|
set userId for identification
|
|
*/
|
|
|
|
return AUTH_INTERNAL_ERR;
|
|
}
|
|
|
|
?>
|