=========================================================================*\ * Lua methods \*=========================================================================*/ -------------------------------------------------------------------------*\ * Just call buffered IO methods \*-------------------------------------------------------------------------*/
| 102 | * Just call buffered IO methods |
| 103 | \*-------------------------------------------------------------------------*/ |
| 104 | static int meth_send(lua_State *L) { |
| 105 | p_unix un = (p_unix) auxiliar_checkclass(L, "unixstream{client}", 1); |
| 106 | return buffer_meth_send(L, &un->buf); |
| 107 | } |
| 108 | |
| 109 | static int meth_receive(lua_State *L) { |
| 110 | p_unix un = (p_unix) auxiliar_checkclass(L, "unixstream{client}", 1); |
nothing calls this directly
no test coverage detected