diff --git a/src/common/protocol.h b/src/common/protocol.h --- a/src/common/protocol.h +++ b/src/common/protocol.h @@ -22,16 +22,16 @@ */ /** - generic, shared requests + generic, shared requests */ enum distren_request_type { - DISTREN_REQUEST_VERSION = 1, /*< identifies the version of software being + DISTREN_REQUEST_VERSION = 1, /*< identifies the version of software being used by the sender and tells if it is a client or server */ - DISTREN_REQUEST_PING = 2, + DISTREN_REQUEST_PING = 2, DISTREN_REQUEST_PONG = 3, DISTREN_REQUEST_DISCONNECT = 4, - + /** client->server only requests */ @@ -51,5 +51,7 @@ enum distren_request_type server->server */ DISTREN_REQUEST_RENDERFRAME = 8, - DISTREN_REQUEST_DONEFRAME = 9 + DISTREN_REQUEST_DONEFRAME = 9, + DISTREN_REQUEST_PROGRESS = 10, /*< tells another server of the progress of the first server's work at rendering */ + };