6 lines
135 B
Lua
6 lines
135 B
Lua
socket = require "socket"
|
|
host, port = "127.0.0.1", 256
|
|
|
|
sid = socket.udp()
|
|
sid:sendto( "hello socket world", host, port )
|
|
sid:close()
|