Enum bgpkit_parser::parser::filter::Filter
source · pub enum Filter {
OriginAsn(u32),
Prefix(IpNet, PrefixMatchType),
PeerIp(IpAddr),
PeerIps(Vec<IpAddr>),
PeerAsn(u32),
Type(ElemType),
TsStart(f64),
TsEnd(f64),
AsPath(Regex),
}
Expand description
Filter enum: definition o types of filters
The available filters are (filter_type
(FilterType
) – definition):
origin_asn
(OriginAsn(u32)
) – origin AS numberprefix(_super, _sub, _super_sub)
(Prefix(IpNet, PrefixMatchType)
) – network prefix and match typepeer_ip
(PeerIp(IpAddr)
) – peer’s IP addresspeer_ips
(Vec<PeerIp(IpAddr)>
) – peers’ IP addressespeer_asn
(PeerAsn(u32)
) – peer’s IP addresstype
(Type(ElemType)
) – message type (withdraw
orannounce
)ts_start
(TsStart(f64)
) andts_end
(TsEnd(f64)
) – start and end unix timestampas_path
(AsPath(Regex)
) – regular expression for AS path string