Blame


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