summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/io/security.erl')
-rw-r--r-- | src/io/security.erl | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/io/security.erl b/src/io/security.erl index fb7be8d..34b6df2 100644 --- a/src/io/security.erl +++ b/src/io/security.erl @@ -7,7 +7,14 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% EXPORTS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --export([assert_identity/2]). +-export +( + [ + assert_identity/2, + lock_queries/1, + unlock_queries/1 + ] +). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% LOCAL FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -16,4 +23,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% EXPORTED FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -assert_identity (_PlayerID, _SessionToken) -> true. +assert_identity (_PlayerID, _SessionToken) -> unimplemented. + +lock_queries (_PlayerID) -> unimplemented. +unlock_queries (_PlayerID) -> unimplemented. |