Fix 'occurred' typo
[bpdyndnsd] / src / util.hpp
... / ...
CommitLineData
1/** @file
2 * @brief Util namespace header.
3 *
4 *
5 *
6 * @copyright Intra2net AG
7 * @license GPLv2
8*/
9
10#ifndef UTIL_H
11#define UTIL_H
12
13#include <string>
14#include <stdexcept>
15#include <list>
16
17
18namespace Util
19{
20 std::string compute_md5_digest(std::string data);
21 std::string parse_status_code(std::string data, std::string delimiter=" ");
22}
23
24#endif