Home
last modified time | relevance | path

Searched refs:ares_set_sortlist (Results 1 – 7 of 7) sorted by relevance

/third_party/cares/
Dbackport-add-str-len-check-in-config_sortlist-to-avoid-stack-overflow.patch6 In ares_set_sortlist, it calls config_sortlist(..., sortstr) to parse
9 However, ares_set_sortlist has not any checks about the validity of the input str.
55 EXPECT_EQ(ARES_ENODATA, ares_set_sortlist(nullptr, "1.2.3.4"));
56 + EXPECT_EQ(ARES_EBADSTR, ares_set_sortlist(channel_, "111.111.111.111*/16"));
57 + EXPECT_EQ(ARES_EBADSTR, ares_set_sortlist(channel_, "111.111.111.111/255.255.255.240*"));
58 EXPECT_EQ(ARES_SUCCESS, ares_set_sortlist(channel_, "xyzzy ; lwk"));
59 EXPECT_EQ(ARES_SUCCESS, ares_set_sortlist(channel_, "xyzzy ; 0x123"));
/third_party/node/deps/cares/docs/
DMakefile.inc125 ares_set_sortlist.3 \
DMakefile.in459 ares_set_sortlist.3 \
/third_party/node/deps/cares/src/lib/
Dares_init.c561 int ares_set_sortlist(ares_channel_t *channel, const char *sortstr) in ares_set_sortlist() function
/third_party/cares/include/
Dares.h380 CARES_EXTERN int ares_set_sortlist(ares_channel channel,
/third_party/node/deps/cares/include/
Dares.h434 CARES_EXTERN int ares_set_sortlist(ares_channel_t *channel,
/third_party/node/deps/cares/
DCHANGES2027 In ares_set_sortlist, it calls config_sortlist(..., sortstr) to parse
2030 However, ares_set_sortlist has not any checks about the validity of the input str.
5541 - api: Add ares_set_sortlist(3) entrypoint