=========================================================================*\ * Lua methods \*=========================================================================*/ -------------------------------------------------------------------------*\ * Just call buffered IO methods \*-------------------------------------------------------------------------*/
| 74 | * Just call buffered IO methods |
| 75 | \*-------------------------------------------------------------------------*/ |
| 76 | static int meth_send(lua_State *L) { |
| 77 | p_unix un = (p_unix) auxiliar_checkclass(L, "serial{client}", 1); |
| 78 | return buffer_meth_send(L, &un->buf); |
| 79 | } |
| 80 | |
| 81 | static int meth_receive(lua_State *L) { |
| 82 | p_unix un = (p_unix) auxiliar_checkclass(L, "serial{client}", 1); |
nothing calls this directly
no test coverage detected