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