mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-14 01:08:21 +01:00
9 lines
141 B
C
9 lines
141 B
C
|
#include "io.h"
|
||
|
|
||
|
void io_init(p_io io, p_send send, p_recv recv, void *ctx)
|
||
|
{
|
||
|
io->send = send;
|
||
|
io->recv = recv;
|
||
|
io->ctx = ctx;
|
||
|
}
|