diff options
Diffstat (limited to 'diplomacy/communication/requests.py')
-rw-r--r-- | diplomacy/communication/requests.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/diplomacy/communication/requests.py b/diplomacy/communication/requests.py index a6bb622..6f99f15 100644 --- a/diplomacy/communication/requests.py +++ b/diplomacy/communication/requests.py @@ -304,6 +304,13 @@ class Logout(_AbstractChannelRequest): """ __slots__ = [] +class UnknownToken(_AbstractChannelRequest): + """ Request to tell server that a channel token is unknown. + Expected response: Nothing - Client does not even wait for a server response. + Expected response handler result: None + """ + __slots__ = [] + class SetGrade(_AbstractChannelRequest): """ SetGrade request. Expected response: responses.Ok |