| 119 | } |
| 120 | |
| 121 | void DeleteAuthCookie() |
| 122 | { |
| 123 | try { |
| 124 | boost::filesystem::remove(GetAuthCookieFile()); |
| 125 | } catch (const boost::filesystem::filesystem_error& e) { |
| 126 | LogPrintf("%s: Unable to remove random auth cookie file: %s\n", __func__, e.what()); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 |
nothing calls this directly
no test coverage detected