=========================================================================*\ * Lua methods \*=========================================================================*/ -------------------------------------------------------------------------*\ * Just call buffered IO methods \*-------------------------------------------------------------------------*/
| 89 | * Just call buffered IO methods |
| 90 | \*-------------------------------------------------------------------------*/ |
| 91 | static int meth_send(lua_State *L) { |
| 92 | p_unix un = (p_unix) auxiliar_checkclass(L, "serial{client}", 1); |
| 93 | return buffer_meth_send(L, &un->buf); |
| 94 | } |
| 95 | |
| 96 | static int meth_receive(lua_State *L) { |
| 97 | p_unix un = (p_unix) auxiliar_checkclass(L, "serial{client}", 1); |
nothing calls this directly
no test coverage detected