=========================================================================*\ * Lua methods \*=========================================================================*/ -------------------------------------------------------------------------*\ * Just call buffered IO methods \*-------------------------------------------------------------------------*/
| 108 | * Just call buffered IO methods |
| 109 | \*-------------------------------------------------------------------------*/ |
| 110 | static int meth_send(lua_State *L) { |
| 111 | p_unix un = (p_unix) auxiliar_checkclass(L, "unix{client}", 1); |
| 112 | return buffer_meth_send(L, &un->buf); |
| 113 | } |
| 114 | |
| 115 | static int meth_receive(lua_State *L) { |
| 116 | p_unix un = (p_unix) auxiliar_checkclass(L, "unix{client}", 1); |
nothing calls this directly
no test coverage detected