| 382 | |
| 383 | |
| 384 | int LuaHTTPMgr::MetaToString(lua_State* L) { |
| 385 | LuaHTTP* fetch = GetURL(L, 1); |
| 386 | lua_pushfstring(L, "http(%p,%s)", (void*)fetch, fetch->GetURL().c_str()); |
| 387 | return 1; |
| 388 | } |
| 389 | |
| 390 | |
| 391 | //============================================================================// |
nothing calls this directly
no test coverage detected