Searched refs:ares_set_sortlist (Results 1 – 7 of 7) sorted by relevance
/third_party/cares/ |
D | backport-add-str-len-check-in-config_sortlist-to-avoid-stack-overflow.patch | 6 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/ |
D | Makefile.inc | 125 ares_set_sortlist.3 \
|
D | Makefile.in | 459 ares_set_sortlist.3 \
|
/third_party/node/deps/cares/src/lib/ |
D | ares_init.c | 561 int ares_set_sortlist(ares_channel_t *channel, const char *sortstr) in ares_set_sortlist() function
|
/third_party/cares/include/ |
D | ares.h | 380 CARES_EXTERN int ares_set_sortlist(ares_channel channel,
|
/third_party/node/deps/cares/include/ |
D | ares.h | 434 CARES_EXTERN int ares_set_sortlist(ares_channel_t *channel,
|
/third_party/node/deps/cares/ |
D | CHANGES | 2027 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
|