From 2e26ae581062ca636dd02718e7cbbf71e022b04a Mon Sep 17 00:00:00 2001 From: notoraptor Date: Mon, 26 Aug 2019 15:02:44 -0400 Subject: Client sends a 'UnknownToken' request when it receives a notification for an unknown token. --- diplomacy/communication/requests.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'diplomacy/communication/requests.py') 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 -- cgit v1.2.3