mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 10:57:34 +08:00
9697f95b8f
This reverts commit 15d999759e
.
15 lines
259 B
C++
15 lines
259 B
C++
#pragma once
|
|
#include <vector>
|
|
|
|
class util
|
|
{
|
|
public:
|
|
util() {}
|
|
~util() {}
|
|
|
|
static size_t get_dns(std::vector<acl::string>& dns_list);
|
|
static double stamp_sub(const struct timeval *from,
|
|
const struct timeval *sub_by);
|
|
protected:
|
|
private:
|
|
}; |