mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 12:12:28 +00:00
Merge pull request #64877 from Faless/mp/4.x_enet_remote_addr
This commit is contained in:
commit
dc4193b478
@ -18,6 +18,18 @@
|
||||
Returns the number of channels allocated for communication with peer.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_remote_address" qualifiers="const">
|
||||
<return type="String" />
|
||||
<description>
|
||||
Returns the IP address of this peer.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_remote_port" qualifiers="const">
|
||||
<return type="int" />
|
||||
<description>
|
||||
Returns the remote port of this peer.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_state" qualifiers="const">
|
||||
<return type="int" enum="ENetPacketPeer.PeerState" />
|
||||
<description>
|
||||
|
@ -206,6 +206,8 @@ void ENetPacketPeer::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("send", "channel", "packet", "flags"), &ENetPacketPeer::_send);
|
||||
ClassDB::bind_method(D_METHOD("throttle_configure", "interval", "acceleration", "deceleration"), &ENetPacketPeer::throttle_configure);
|
||||
ClassDB::bind_method(D_METHOD("set_timeout", "timeout", "timeout_min", "timeout_max"), &ENetPacketPeer::set_timeout);
|
||||
ClassDB::bind_method(D_METHOD("get_remote_address"), &ENetPacketPeer::get_remote_address);
|
||||
ClassDB::bind_method(D_METHOD("get_remote_port"), &ENetPacketPeer::get_remote_port);
|
||||
ClassDB::bind_method(D_METHOD("get_statistic", "statistic"), &ENetPacketPeer::get_statistic);
|
||||
ClassDB::bind_method(D_METHOD("get_state"), &ENetPacketPeer::get_state);
|
||||
ClassDB::bind_method(D_METHOD("get_channels"), &ENetPacketPeer::get_channels);
|
||||
|
Loading…
Reference in New Issue
Block a user