=========================================================================*\ * Lua methods \*=========================================================================*/ -------------------------------------------------------------------------*\ * Just call buffered IO methods \*-------------------------------------------------------------------------*/
| 146 | * Just call buffered IO methods |
| 147 | \*-------------------------------------------------------------------------*/ |
| 148 | static int meth_send(lua_State *L) { |
| 149 | p_tcp tcp = (p_tcp) auxiliar_checkclass(L, "tcp{client}", 1); |
| 150 | return buffer_meth_send(L, &tcp->buf); |
| 151 | } |
| 152 | |
| 153 | static int meth_receive(lua_State *L) { |
| 154 | p_tcp tcp = (p_tcp) auxiliar_checkclass(L, "tcp{client}", 1); |
nothing calls this directly
no test coverage detected