Initial commit

This commit is contained in:
Gergely Polonkai (W00d5t0ck)
2011-09-29 18:09:59 +02:00
commit 627f2fd875
5 changed files with 210 additions and 0 deletions

19
gatewayBackend.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
interface gatewayBackend
{
/**
*
* @param String $username
* @param String $password
* @param String $ip
* @param String $sessionId
* @return String $token
*/
public function get_token($username, $password, $ip, $sessionId);
/**
* @param
*/
public function
}