2016-01-11 23:30:30 +01:00
# net Module
2016-03-05 10:47:01 +01:00
| Since | Origin / Contributor | Maintainer | Source |
| :----- | :-------------------- | :---------- | :------ |
2016-12-31 13:14:03 +01:00
| 2014-12-22 | [Zeroday ](https://github.com/funshine ) | [PhoeniX ](https://github.com/djphoenix ) | [net.c ](../../../app/modules/net.c )|
2016-03-05 10:47:01 +01:00
2016-12-31 13:14:03 +01:00
** TLS operations was moved to the [TLS ](tls.md ) module **
2016-01-11 23:30:30 +01:00
## Constants
2016-03-05 10:47:01 +01:00
Constants to be used in other functions: `net.TCP` , `net.UDP`
2016-01-11 23:30:30 +01:00
## net.createConnection()
Creates a client.
#### Syntax
`net.createConnection(type, secure)`
#### Parameters
2016-12-31 13:14:03 +01:00
- `type` `net.TCP` or `net.UDP` . UDP connections chained to [net.createUDPSocket() ](#netcreateudpsocket )
- `secure` 1 for encrypted, 0 for plain. Secure connections chained to [tls.createConnection() ](tls.md#tlscreateconnection )
2016-01-11 23:30:30 +01:00
#### Returns
2016-12-31 13:14:03 +01:00
- for `net.TCP` - net.socket sub module
- for `net.UDP` - net.udpsocket sub module
- for `net.TCP` with `secure` - tls.socket sub module
2016-01-11 23:30:30 +01:00
#### Example
```lua
2016-12-31 13:14:03 +01:00
net.createConnection(net.TCP, 0)
2016-01-11 23:30:30 +01:00
```
#### See also
2016-12-31 13:14:03 +01:00
[`net.createServer()` ](#netcreateserver ), [`net.createUDPSocket()` ](#netcreateudpsocket ), [`tls.createConnection()` ](tls.md#tlscreateconnection )
2016-01-11 23:30:30 +01:00
## net.createServer()
Creates a server.
#### Syntax
`net.createServer(type, timeout)`
#### Parameters
2016-12-31 13:14:03 +01:00
- `type` `net.TCP` or `net.UDP` . UDP connections chained to [net.createUDPSocket() ](#netcreateudpsocket )
2016-01-11 23:30:30 +01:00
- `timeout` for a TCP server timeout is 1~28'800 seconds (for an inactive client to be disconnected)
#### Returns
2016-12-31 13:14:03 +01:00
- for `net.TCP` - net.server sub module
- for `net.UDP` - net.udpsocket sub module
2016-01-11 23:30:30 +01:00
#### Example
```lua
net.createServer(net.TCP, 30) -- 30s timeout
```
2016-12-31 13:14:03 +01:00
#### See also
[`net.createConnection()` ](#netcreateconnection ), [`net.createUDPSocket()` ](#netcreateudpsocket )
## net.createUDPSocket()
Creates an UDP socket.
#### Syntax
`net.createUDPSocket()`
#### Parameters
none
#### Returns
net.udpsocket sub module
2016-01-11 23:30:30 +01:00
#### See also
[`net.createConnection()` ](#netcreateconnection )
2016-04-01 21:44:46 +02:00
## net.multicastJoin()
Join multicast group.
#### Syntax
`net.multicastJoin(if_ip, multicast_ip)`
#### Parameters
- `if_ip` string containing the interface ip to join the multicast group. "any" or "" affects all interfaces.
- `multicast_ip` of the group to join
#### Returns
`nil`
## net.multicastLeave()
Leave multicast group.
#### Syntax
`net.multicastLeave(if_ip, multicast_ip)`
#### Parameters
- `if_ip` string containing the interface ip to leave the multicast group. "any" or "" affects all interfaces.
- `multicast_ip` of the group to leave
#### Returns
`nil`
2016-01-11 23:30:30 +01:00
# net.server Module
## net.server:close()
Closes the server.
#### Syntax
`net.server.close()`
#### Parameters
none
#### Returns
`nil`
#### Example
```lua
-- creates a server
sv = net.createServer(net.TCP, 30)
-- closes the server
sv:close()
```
#### See also
[`net.createServer()` ](#netcreateserver )
## net.server:listen()
Listen on port from IP address.
#### Syntax
2016-12-31 13:14:03 +01:00
`net.server.listen([port],[ip],function(net.socket))`
2016-01-11 23:30:30 +01:00
#### Parameters
2016-12-31 13:14:03 +01:00
- `port` port number, can be omitted (random port will be chosen)
2016-01-11 23:30:30 +01:00
- `ip` IP address string, can be omitted
- `function(net.socket)` callback function, pass to caller function as param if a connection is created successfully
#### Returns
`nil`
#### Example
```lua
-- server listens on 80, if data received, print data to console and send "hello world" back to caller
2016-11-27 21:42:10 +01:00
-- 30s time out for a inactive client
sv = net.createServer(net.TCP, 30)
function receiver(sck, data)
print(data)
sck:close()
end
if sv then
sv:listen(80, function(conn)
conn:on("receive", receiver)
conn:send("hello world")
2016-03-25 22:14:26 +01:00
end)
2016-11-27 21:42:10 +01:00
end
2016-01-11 23:30:30 +01:00
```
#### See also
[`net.createServer()` ](#netcreateserver )
2016-12-31 13:14:03 +01:00
## net.server:getaddr()
2016-04-01 21:44:46 +02:00
2016-12-31 13:14:03 +01:00
Returns server local address/port.
2016-04-01 21:44:46 +02:00
2016-12-31 13:14:03 +01:00
#### Syntax
`net.server.getaddr()`
2016-04-01 21:44:46 +02:00
2016-12-31 13:14:03 +01:00
#### Parameters
none
2016-04-01 21:44:46 +02:00
2016-12-31 13:14:03 +01:00
#### Returns
`port` , `ip` (or `nil, nil` if not listening)
2016-04-01 21:44:46 +02:00
#### See also
2016-12-31 13:14:03 +01:00
[`net.server:listen()` ](#netserverlisten )
2016-04-01 21:44:46 +02:00
2016-01-11 23:30:30 +01:00
# net.socket Module
## net.socket:close()
Closes socket.
#### Syntax
`close()`
#### Parameters
none
#### Returns
`nil`
#### See also
[`net.createServer()` ](#netcreateserver )
## net.socket:connect()
Connect to a remote server.
#### Syntax
`connect(port, ip|domain)`
#### Parameters
- `port` port number
- `ip` IP address or domain name string
#### Returns
`nil`
#### See also
[`net.socket:on()` ](#netsocketon )
## net.socket:dns()
Provides DNS resolution for a hostname.
#### Syntax
`dns(domain, function(net.socket, ip))`
#### Parameters
- `domain` domain name
- `function(net.socket, ip)` callback function. The first parameter is the socket, the second parameter is the IP address as a string.
#### Returns
`nil`
#### Example
```lua
sk = net.createConnection(net.TCP, 0)
sk:dns("www.nodemcu.com", function(conn, ip) print(ip) end)
sk = nil
```
#### See also
[`net.createServer()` ](#netcreateserver )
2016-04-01 21:44:46 +02:00
## net.socket:getpeer()
2016-12-31 13:14:03 +01:00
Retrieve port and ip of remote peer.
2016-04-01 21:44:46 +02:00
#### Syntax
`getpeer()`
#### Parameters
none
#### Returns
2016-12-31 13:14:03 +01:00
`port` , `ip` (or `nil, nil` if not connected)
## net.socket:getaddr()
Retrieve local port and ip of socket.
#### Syntax
`getaddr()`
#### Parameters
none
#### Returns
`port` , `ip` (or `nil, nil` if not connected)
2016-04-01 21:44:46 +02:00
2016-03-30 22:22:09 +02:00
## net.socket:hold()
Throttle data reception by placing a request to block the TCP receive function. This request is not effective immediately, Espressif recommends to call it while reserving 5*1460 bytes of memory.
#### Syntax
`hold()`
#### Parameters
none
#### Returns
`nil`
#### See also
[`net.socket:unhold()` ](#netsocketunhold )
2016-01-11 23:30:30 +01:00
## net.socket:on()
Register callback functions for specific events.
#### Syntax
`on(event, function())`
#### Parameters
- `event` string, which can be "connection", "reconnection", "disconnection", "receive" or "sent"
2016-12-31 13:14:03 +01:00
- `function(net.socket[, string])` callback function. Can be `nil` to remove callback.
The first parameter of callback is the socket.
- If event is "receive", the second parameter is the received data as string.
- If event is "disconnection" or "reconnection", the second parameter is error code.
If reconnection event is specified, disconnection receives only "normal close" events.
Otherwise, all connection errors (with normal close) passed to disconnection event.
2016-01-11 23:30:30 +01:00
#### Returns
`nil`
#### Example
```lua
2016-03-25 22:14:26 +01:00
srv = net.createConnection(net.TCP, 0)
srv:on("receive", function(sck, c) print(c) end)
2016-12-31 13:14:03 +01:00
srv:on("connection", function(sck)
2016-03-25 22:14:26 +01:00
-- Wait for connection before sending.
sck:send("GET / HTTP/1.1\r\nHost: 192.168.0.66\r\nConnection: keep-alive\r\nAccept: */* \r\n\r\n")
2016-01-11 23:30:30 +01:00
end)
2016-12-31 13:14:03 +01:00
srv:connect(80,"192.168.0.66")
2016-01-11 23:30:30 +01:00
```
#### See also
2016-03-30 22:22:09 +02:00
- [`net.createServer()` ](#netcreateserver )
- [`net.socket:hold()` ](#netsockethold )
2016-01-11 23:30:30 +01:00
## net.socket:send()
2016-04-01 21:44:46 +02:00
Sends data to remote peer.
2016-01-11 23:30:30 +01:00
#### Syntax
2016-03-25 22:14:26 +01:00
`send(string[, function(sent)])`
`sck:send(data, fnA)` is functionally equivalent to `sck:send(data) sck:on("sent", fnA)` .
2016-01-11 23:30:30 +01:00
#### Parameters
- `string` data in string which will be sent to server
- `function(sent)` callback function for sending string
#### Returns
`nil`
#### Note
2016-03-25 22:14:26 +01:00
Multiple consecutive `send()` calls aren't guaranteed to work (and often don't) as network requests are treated as separate tasks by the SDK. Instead, subscribe to the "sent" event on the socket and send additional data (or close) in that callback. See [#730 ](https://github.com/nodemcu/nodemcu-firmware/issues/730#issuecomment-154241161 ) for details.
#### Example
```lua
srv = net.createServer(net.TCP)
2016-11-27 21:42:10 +01:00
function receiver(sck, data)
local response = {}
-- if you're sending back HTML over HTTP you'll want something like this instead
-- local response = {"HTTP/1.0 200 OK\r\nServer: NodeMCU on ESP8266\r\nContent-Type: text/html\r\n\r\n"}
response[#response + 1] = "lots of data"
response[#response + 1] = "even more data"
response[#response + 1] = "e.g. content read from a file"
-- sends and removes the first element from the 'response' table
local function send(localSocket)
2016-12-25 16:10:31 +01:00
if #response > 0 then
localSocket:send(table.remove(response, 1))
2016-11-27 21:42:10 +01:00
else
localSocket:close()
response = nil
2016-03-25 22:14:26 +01:00
end
2016-11-27 21:42:10 +01:00
end
2016-03-25 22:14:26 +01:00
2016-11-27 21:42:10 +01:00
-- triggers the send() function again once the first chunk of data was sent
sck:on("sent", send)
send(sck)
end
srv:listen(80, function(conn)
conn:on("receive", receiver)
2016-03-25 22:14:26 +01:00
end)
```
If you do not or can not keep all the data you send back in memory at one time (remember that `response` is an aggregation) you may use explicit callbacks instead of building up a table like so:
```lua
sck:send(header, function()
local data1 = "some large chunk of dynamically loaded data"
sck:send(data1, function()
local data2 = "even more dynamically loaded data"
2016-05-22 21:50:57 +02:00
sck:send(data2, function(sk)
sk:close()
2016-03-25 22:14:26 +01:00
end)
end)
end)
```
2016-01-11 23:30:30 +01:00
#### See also
[`net.socket:on()` ](#netsocketon )
2016-03-30 22:22:09 +02:00
## net.socket:unhold()
2016-04-01 21:44:46 +02:00
Unblock TCP receiving data by revocation of a preceding `hold()` .
2016-03-30 22:22:09 +02:00
#### Syntax
`unhold()`
#### Parameters
none
#### Returns
`nil`
#### See also
[`net.socket:hold()` ](#netsockethold )
2016-12-31 13:14:03 +01:00
# net.udpsocket Module
## net.udpsocket:close()
Closes UDP socket.
The syntax and functional identical to [`net.socket:close()` ](#netsocketclose ).
## net.udpsocket:listen()
Listen on port from IP address.
The syntax and functional similar to [`net.server:listen()` ](#netserverlisten ), but callback parameter is not provided.
## net.udpsocket:on()
Register callback functions for specific events.
The syntax and functional similar to [`net.socket:on()` ](#netsocketon ), only "received", "sent" and "dns" events are valid.
**`received` callback have `port` and `ip` after `data` argument.**
## net.udpsocket:send()
Sends data to specific remote peer.
## net.udpsocket:dns()
Provides DNS resolution for a hostname.
The syntax and functional identical to [`net.socket:dns()` ](#netsocketdns ).
## net.udpsocket:getaddr()
Retrieve local port and ip of socket.
The syntax and functional identical to [`net.socket:getaddr()` ](#netsocketgetaddr ).
2016-01-11 23:30:30 +01:00
# net.dns Module
## net.dns.getdnsserver()
Gets the IP address of the DNS server used to resolve hostnames.
#### Syntax
`net.dns.getdnsserver(dns_index)`
#### Parameters
dns_index which DNS server to get (range 0~1)
#### Returns
IP address (string) of DNS server
#### Example
```lua
print(net.dns.getdnsserver(0)) -- 208.67.222.222
print(net.dns.getdnsserver(1)) -- nil
net.dns.setdnsserver("8.8.8.8", 0)
net.dns.setdnsserver("192.168.1.252", 1)
print(net.dns.getdnsserver(0)) -- 8.8.8.8
print(net.dns.getdnsserver(1)) -- 192.168.1.252
```
#### See also
[`net.dns:setdnsserver()` ](#netdnssetdnsserver )
## net.dns.resolve()
Resolve a hostname to an IP address. Doesn't require a socket like [`net.socket.dns()` ](#netsocketdns ).
#### Syntax
2016-12-31 13:14:03 +01:00
`net.dns.resolve(host, function(sk, ip))`
2016-01-11 23:30:30 +01:00
#### Parameters
- `host` hostname to resolve
2016-12-31 13:14:03 +01:00
- `function(sk, ip)` callback called when the name was resolved. `sk` is always `nil`
2016-01-11 23:30:30 +01:00
#### Returns
`nil`
#### Example
```lua
net.dns.resolve("www.google.com", function(sk, ip)
if (ip == nil) then print("DNS fail!") else print(ip) end
end)
```
#### See also
[`net.socket:dns()` ](#netsocketdns )
## net.dns.setdnsserver()
Sets the IP of the DNS server used to resolve hostnames. Default: resolver1.opendns.com (208.67.222.222). You can specify up to 2 DNS servers.
#### Syntax
`net.dns.setdnsserver(dns_ip_addr, dns_index)`
#### Parameters
- `dns_ip_addr` IP address of a DNS server
- `dns_index` which DNS server to set (range 0~1). Hence, it supports max. 2 servers.
#### Returns
`nil`
#### See also
[`net.dns:getdnsserver()` ](#netdnsgetdnsserver )
2016-03-07 02:25:05 +01:00
# net.cert Module
2016-12-31 13:14:03 +01:00
This part gone to the [TLS ](tls.md ) module, link kept for backward compatibility.