OnClientConnectionRequest: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
Line 10: Line 10:


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua>
AddEvent("OnClientConnectionRequest", function(ip, port)
    -- you can check for blacklisted IP and return false to stop them!
end)
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
{{ServerEvents}}
{{SomeEvent}}

Revision as of 17:19, 13 December 2019

OnClientConnectionRequest

Type: Event
Context: Server
Introduced: v1.0

Description

Early callback of when a client tries to connect to the server. Client is not fully authorized by the server in this state. You can return false in this event to disconnect the client immediately.

Syntax

OnClientConnectionRequest(ip, port)

Parameters

  • ip
    IP address of the client connecting.
  • port
    Port of the client connecting. This is not the server port.

Example

AddEvent("OnClientConnectionRequest", function(ip, port)
    -- you can check for blacklisted IP and return false to stop them!
end)

See also

Template:SomeEvent