Lines Matching refs:ipbuf
847 ares__buf_t *ipbuf = NULL;
877 ipbuf = ares__buf_create();
878 if (ipbuf == NULL) {
883 status = ares__buf_append_str(ipbuf, "[");
888 status = ares__buf_append_str(ipbuf, ipaddr);
893 status = ares__buf_append_str(ipbuf, "]");
899 status = ares__buf_append_str(ipbuf, ":");
903 status = ares__buf_append_num_dec(ipbuf, port, 0);
910 status = ares__buf_append_str(ipbuf, "%");
914 status = ares__buf_append_num_dec(ipbuf, ll_scope, 0);
920 ipstr = ares__buf_finish_str(ipbuf, NULL);
921 ipbuf = NULL;
981 ares__buf_destroy(ipbuf);