Deprecate rfb_event.

Fixes GH-446
This commit is contained in:
Johanna Amann 2019-07-03 02:15:34 -07:00
parent e382369091
commit c0e3b8c66f
2 changed files with 2 additions and 7 deletions

View file

@ -106,11 +106,6 @@ function set_session(c: connection)
} }
} }
event rfb_event(c: connection) &priority=5
{
set_session(c);
}
event rfb_client_version(c: connection, major_version: string, minor_version: string) &priority=5 event rfb_client_version(c: connection, major_version: string, minor_version: string) &priority=5
{ {
set_session(c); set_session(c);

View file

@ -1,7 +1,7 @@
## Generated for RFB event ## Generated for RFB event
## ##
## c: The connection record for the underlying transport-layer session/flow. ## c: The connection record for the underlying transport-layer session/flow.
event rfb_event%(c: connection%); event rfb_event%(c: connection%) &deprecated="Remove in v3.1: This event never served a real purpose and will be removed. Please use the other rfb events instead.";
## Generated for RFB event authentication mechanism selection ## Generated for RFB event authentication mechanism selection
## ##
@ -47,4 +47,4 @@ event rfb_server_version%(c: connection, major_version: string, minor_version: s
## width: width of the shared screen ## width: width of the shared screen
## ##
## height: height of the shared screen ## height: height of the shared screen
event rfb_server_parameters%(c: connection, name: string, width: count, height: count%); event rfb_server_parameters%(c: connection, name: string, width: count, height: count%);