e67e7a20bd
* fix keepalive
13 lines
263 B
C++
13 lines
263 B
C++
#ifndef NNTPCHAN_SANITIZE_HPP
|
|
#define NNTPCHAN_SANITIZE_HPP
|
|
#include <string>
|
|
|
|
namespace nntpchan
|
|
{
|
|
std::string NNTPSanitize(const std::string & str);
|
|
std::string ToLower(const std::string & str);
|
|
bool IsValidMessageID(const std::string & msgid);
|
|
}
|
|
|
|
#endif
|