summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2018-02-25 12:31:54 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2018-02-25 12:31:54 +0100 |
commit | d35cd5304d334582d8479062a52a8c7b34f892a1 (patch) | |
tree | 1702a26fafd1c6cf33365558872aba52bfd6b7e4 /src/io/security.erl | |
parent | ef693352acedaf00cc1b216d85cd08d32a7ae265 (diff) |
Fixes a few typos, adds 'unimplemented' functions.
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. |