dns_proxy/include/dns_proxy.hrl
2025-12-13 17:56:30 +08:00

21 lines
484 B
Erlang

%%%-------------------------------------------------------------------
%%% @author anlicheng
%%% @copyright (C) 2025, <COMPANY>
%%% @doc
%%%
%%% @end
%%% Created : 04. 12月 2025 11:41
%%%-------------------------------------------------------------------
-author("anlicheng").
-record(dns_cache, {
%% {Qname, QType, QClass}
key,
answers = [],
authority = [],
additional = [],
rc :: integer(),
flags = #{},
% unix time
expire_at :: integer()
}).