e67e7a20bd
* fix keepalive
15 lines
372 B
C++
15 lines
372 B
C++
#include "exec_frontend.hpp"
|
|
#include "sanitize.hpp"
|
|
#include <cassert>
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main(int , char * [])
|
|
{
|
|
nntpchan::Frontend_ptr f(new nntpchan::ExecFrontend("./contrib/nntpchan.sh"));
|
|
assert(nntpchan::IsValidMessageID("<a28a71493831188@web.oniichan.onion>"));
|
|
assert(f->AcceptsNewsgroup("overchan.test"));
|
|
std::cout << "all good" << std::endl;
|
|
}
|