OpenBSD CVS

CVS log for src/lib/libevent/evbuffer_new.3


[BACK] Up to [local] / src / lib / libevent

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.14 / (download) - annotate - [select for diffs], Thu Jul 26 12:50:04 2018 UTC (5 years, 10 months ago) by rob
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, HEAD
Changes since 1.13: +11 -3 lines
Diff to previous 1.13 (colored)

Mention some missing libevent macros.

ok jmc@, benno@, "yes" deraadt@

Revision 1.13 / (download) - annotate - [select for diffs], Tue Aug 1 14:57:03 2017 UTC (6 years, 10 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.12: +4 -3 lines
Diff to previous 1.12 (colored)

add missing and correct misspelled names, most in NAME sections;
found with regress/usr.bin/mandoc/db/dbm_dump;
OK jmc@

Revision 1.12 / (download) - annotate - [select for diffs], Fri Nov 21 06:59:00 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.11: +2 -1 lines
Diff to previous 1.11 (colored)

evbuffer_read will return 0 one an end of file condition.

Revision 1.11 / (download) - annotate - [select for diffs], Thu Nov 20 13:39:13 2014 UTC (9 years, 6 months ago) by jmc
Branch: MAIN
Changes since 1.10: +3 -3 lines
Diff to previous 1.10 (colored)

zap some stray commas;

Revision 1.10 / (download) - annotate - [select for diffs], Thu Nov 20 13:35:59 2014 UTC (9 years, 6 months ago) by jmc
Branch: MAIN
Changes since 1.9: +2 -1 lines
Diff to previous 1.9 (colored)

add evbuffer_expand to NAME;

Revision 1.9 / (download) - annotate - [select for diffs], Thu Nov 20 01:49:20 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN
Changes since 1.8: +11 -2 lines
Diff to previous 1.8 (colored)

document the only macro i find useful when working with evbuffers.

Revision 1.8 / (download) - annotate - [select for diffs], Thu Nov 20 00:01:55 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN
Changes since 1.7: +1 -1 lines
Diff to previous 1.7 (colored)

im not good at grammar things.

from schwarze@

Revision 1.7 / (download) - annotate - [select for diffs], Thu Nov 20 00:00:47 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN
Changes since 1.6: +13 -5 lines
Diff to previous 1.6 (colored)

use .Va to say errno is a variable.

from schwarze@

Revision 1.6 / (download) - annotate - [select for diffs], Wed Nov 19 23:58:07 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

fix erroneous capitalisation of a word in the middle of a sentence.

from schwarze again

Revision 1.5 / (download) - annotate - [select for diffs], Wed Nov 19 23:57:23 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

less worse escapes for \ from ingo. im sure there's a much nicer way to
represent newlines still.

Revision 1.4 / (download) - annotate - [select for diffs], Wed Nov 19 23:55:54 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored)

use .In to specify includes.

Revision 1.3 / (download) - annotate - [select for diffs], Wed Nov 19 23:54:32 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

ingo also points out we're documenting things that work with
evbuffers, not evbufbuffers.

Revision 1.2 / (download) - annotate - [select for diffs], Wed Nov 19 23:53:23 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN
Changes since 1.1: +12 -4 lines
Diff to previous 1.1 (colored)

ingo points out

.Fo evbuffer_readln
.Fa "struct evbuffer *buf"
.Fa "size_t *read_out"
.Fa "enum evbuffer_eol_style eol_style"
.Fc

is more readable mdoc for very long prototypes than lines like

.Fn "evbuffer_readln" "struct evbuffer *buf" "size_t *read_out" "enum evbuffer_eol_style eol_style"

Revision 1.1 / (download) - annotate - [select for diffs], Wed Nov 19 23:50:22 2014 UTC (9 years, 6 months ago) by dlg
Branch: MAIN

i got sick of having to read the source code to know what the
evbuffer_foo functions do. reyk, nicm, jmc, and schwarze seem to
support a manpage as a reasonable solution to this problem.

im putting this in a separate manpage because i find they get too
cumbersome when they get too big. ingo agrees (and suggests even
this might be too big).

the file is evbuffer_new.3 rather than evbuffer.3 because we document
functions.

ok reyk@ nicm@ jmc@ schwarze@
this is rough, everyone has tweaks coming.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.