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