Difference between revisions of "enet.host create"
m (Fixed arguments order) |
m (Added note about port 0) |
||
Line 3: | Line 3: | ||
A bind_address of [[nil]] makes a [[enet.host | host]] that can not be connected to (typically a client). Otherwise the address can either be of the form <ipaddress>:<port>, <hostname>:<port>, or *:<port>. | A bind_address of [[nil]] makes a [[enet.host | host]] that can not be connected to (typically a client). Otherwise the address can either be of the form <ipaddress>:<port>, <hostname>:<port>, or *:<port>. | ||
− | Example addresses include "127.0.0.1:8888", "localhost:2232", and "*:6767". | + | Example addresses include "127.0.0.1:8888", "localhost:2232", and "*:6767". If port is 0, the system automatically chooses an ephemeral port and you can get port number by [[enet.host:get_socket_address|host:get_socket_address]](). |
== Function == | == Function == | ||
=== Synopsis === | === Synopsis === | ||
Line 18: | Line 18: | ||
=== Returns === | === Returns === | ||
{{param|enet.host|host|The requested [[enet.host | host]].}} | {{param|enet.host|host|The requested [[enet.host | host]].}} | ||
− | |||
== See Also == | == See Also == | ||
* [[parent::lua-enet]] | * [[parent::lua-enet]] |
Latest revision as of 17:11, 9 May 2019
Returns a new host. All arguments are optional.
A bind_address of nil makes a host that can not be connected to (typically a client). Otherwise the address can either be of the form <ipaddress>:<port>, <hostname>:<port>, or *:<port>.
Example addresses include "127.0.0.1:8888", "localhost:2232", and "*:6767". If port is 0, the system automatically chooses an ephemeral port and you can get port number by host:get_socket_address().
Function
Synopsis
host = enet.host_create(bind_address, peer_count, channel_count, in_bandwidth, out_bandwidth)
Arguments
string bind_address
- The address to connect to in the format "ip:port".
number peer_count
- The max number of peers. Defaults to 64.
number channel_count
- The max number of channels. Defaults to 1.
number in_bandwidth
- Downstream bandwidth in bytes/sec. Defaults to 0 (unlimited).
number out_bandwidth
- Upstream bandwidth in bytes/sec. Defaults to 0 (unlimited).
Returns
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info