diff options
author | 2007-03-21 13:52:01 +0000 | |
---|---|---|
committer | 2007-03-21 13:52:01 +0000 | |
commit | ef42898ba66b8089b54d5e9bd8e93fcbb1ce9b57 (patch) | |
tree | ccae10906bbac6c39ae5567f729a392221759e88 /lib/libevent | |
parent | Add support for mounting arbitrary sessions, from Enache Adrian (diff) | |
download | wireguard-openbsd-ef42898ba66b8089b54d5e9bd8e93fcbb1ce9b57.tar.xz wireguard-openbsd-ef42898ba66b8089b54d5e9bd8e93fcbb1ce9b57.zip |
Add missing const
List evhttp stuff commented out, should probably get its own man page
Diffstat (limited to 'lib/libevent')
-rw-r--r-- | lib/libevent/event.3 | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/lib/libevent/event.3 b/lib/libevent/event.3 index c14989df9d7..e038784f9c5 100644 --- a/lib/libevent/event.3 +++ b/lib/libevent/event.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: event.3,v 1.33 2007/03/21 13:41:21 millert Exp $ +.\" $OpenBSD: event.3,v 1.34 2007/03/21 13:52:01 millert Exp $ .\" .\" Copyright (c) 2000 Artur Grabowski <art@openbsd.org> .\" All rights reserved. @@ -101,6 +101,33 @@ .\".Nm evtag_unmarshal_fixed , .\".Nm evtag_unmarshal_string , .\".Nm evtag_unmarshal_timeval , +.\".Nm evhttp_start , +.\".Nm evhttp_free , +.\".Nm evhttp_set_cb , +.\".Nm evhttp_set_gencb , +.\".Nm evhttp_set_timeout , +.\".Nm evhttp_send_error , +.\".Nm evhttp_send_reply , +.\".Nm evhttp_send_reply_start , +.\".Nm evhttp_send_reply_chunk , +.\".Nm evhttp_send_reply_end , +.\".Nm evhttp_request_new , +.\".Nm evhttp_request_set_chunked_cb , +.\".Nm evhttp_connection_new , +.\".Nm evhttp_connection_free , +.\".Nm evhttp_connection_set_timeout , +.\".Nm evhttp_connection_set_retries , +.\".Nm evhttp_connection_set_closecb , +.\".Nm evhttp_connection_get_peer , +.\".Nm evhttp_make_request , +.\".Nm evhttp_request_uri , +.\".Nm evhttp_remove_header , +.\".Nm evhttp_add_header , +.\".Nm evhttp_clear_headers , +.\".Nm evhttp_encode_uri , +.\".Nm evhttp_decode_uri , +.\".Nm evhttp_parse_query , +.\".Nm evhttp_htmlescape , .Nd execute a function when a specific event occurs .Sh SYNOPSIS .Fd #include <sys/time.h> @@ -186,7 +213,7 @@ .Ft int .Fn "evbuffer_add_buffer" "struct evbuffer *dst" "struct evbuffer *src" .Ft int -.Fn "evbuffer_add_printf" "struct evbuffer *buf" "char *fmt" "..." +.Fn "evbuffer_add_printf" "struct evbuffer *buf" "const char *fmt" "..." .Ft int .Fn "evbuffer_add_vprintf" "struct evbuffer *buf" "const char *fmt" "va_list ap" .Ft void |