| 199 | } |
| 200 | |
| 201 | static int meth_dirty(lua_State *L) |
| 202 | { |
| 203 | p_tcp tcp = (p_tcp) auxiliar_checkgroup(L, "tcp{any}", 1); |
| 204 | lua_pushboolean(L, !buffer_isempty(&tcp->buf)); |
| 205 | return 1; |
| 206 | } |
| 207 | |
| 208 | /*-------------------------------------------------------------------------*\ |
| 209 | * Waits for and returns a client object attempting connection to the |
nothing calls this directly
no test coverage detected