mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-03 04:17:52 +08:00
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:
|
|
}; |