Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/libevent/dist/test/
H A Dregress_http.c3888 struct evhttp *xhttp = NULL; in http_primitives() local
3899 xhttp = evhttp_new(NULL); in http_primitives()
3900 tt_assert(xhttp); in http_primitives()
3901 tt_int_op(evhttp_set_cb(xhttp, "/test", http_basic_cb, xhttp), ==, 0); in http_primitives()
3902 tt_int_op(evhttp_set_cb(xhttp, "/test", http_basic_cb, xhttp), ==, -1); in http_primitives()
3903 tt_int_op(evhttp_del_cb(xhttp, "/test"), ==, 0); in http_primitives()
3904 tt_int_op(evhttp_del_cb(xhttp, "/test"), ==, -1); in http_primitives()
3905 tt_int_op(evhttp_set_cb(xhttp, "/test", http_basic_cb, xhttp), ==, 0); in http_primitives()
3910 if (xhttp) in http_primitives()
3911 evhttp_free(xhttp); in http_primitives()