Blame


1 c423c56e 2022-09-25 op /*
2 c423c56e 2022-09-25 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 c423c56e 2022-09-25 op *
4 c423c56e 2022-09-25 op * Permission to use, copy, modify, and distribute this software for any
5 c423c56e 2022-09-25 op * purpose with or without fee is hereby granted, provided that the above
6 c423c56e 2022-09-25 op * copyright notice and this permission notice appear in all copies.
7 c423c56e 2022-09-25 op *
8 c423c56e 2022-09-25 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 c423c56e 2022-09-25 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 c423c56e 2022-09-25 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 c423c56e 2022-09-25 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 c423c56e 2022-09-25 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 c423c56e 2022-09-25 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 c423c56e 2022-09-25 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 c423c56e 2022-09-25 op */
16 c423c56e 2022-09-25 op
17 c423c56e 2022-09-25 op #include <sys/time.h>
18 c423c56e 2022-09-25 op
19 c423c56e 2022-09-25 op #include <event2/event.h>
20 c423c56e 2022-09-25 op #include <event2/event_compat.h>
21 c423c56e 2022-09-25 op #include <event2/event_struct.h>
22 c423c56e 2022-09-25 op #include <event2/buffer.h>
23 c423c56e 2022-09-25 op #include <event2/buffer_compat.h>
24 c423c56e 2022-09-25 op #include <event2/bufferevent.h>
25 c423c56e 2022-09-25 op #include <event2/bufferevent_struct.h>
26 c423c56e 2022-09-25 op #include <event2/bufferevent_compat.h>
27 c423c56e 2022-09-25 op
28 c423c56e 2022-09-25 op static void
29 c423c56e 2022-09-25 op rw_cb(struct bufferevent *bev, void *d)
30 c423c56e 2022-09-25 op {
31 c423c56e 2022-09-25 op return;
32 c423c56e 2022-09-25 op }
33 c423c56e 2022-09-25 op
34 c423c56e 2022-09-25 op static void
35 c423c56e 2022-09-25 op err_cb(struct bufferevent *bev, short err, void *d)
36 c423c56e 2022-09-25 op {
37 c423c56e 2022-09-25 op return;
38 c423c56e 2022-09-25 op }
39 c423c56e 2022-09-25 op
40 c423c56e 2022-09-25 op int
41 c423c56e 2022-09-25 op main(void)
42 c423c56e 2022-09-25 op {
43 c423c56e 2022-09-25 op struct bufferevent *bev;
44 c423c56e 2022-09-25 op
45 c423c56e 2022-09-25 op event_init();
46 c423c56e 2022-09-25 op
47 c423c56e 2022-09-25 op if ((bev = bufferevent_new(0, rw_cb, rw_cb, err_cb, NULL)) == NULL)
48 c423c56e 2022-09-25 op return 1;
49 c423c56e 2022-09-25 op
50 c423c56e 2022-09-25 op evbuffer_unfreeze(bev->input, 0);
51 c423c56e 2022-09-25 op evbuffer_unfreeze(bev->output, 1);
52 c423c56e 2022-09-25 op
53 c423c56e 2022-09-25 op bufferevent_free(bev);
54 c423c56e 2022-09-25 op
55 c423c56e 2022-09-25 op return 0;
56 c423c56e 2022-09-25 op }