Skip to content

Commit

Permalink
"an" --> "a".
Browse files Browse the repository at this point in the history
  • Loading branch information
ln5 authored and nmathewson committed Oct 29, 2010
1 parent 233b411 commit de8d592
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Ref6a_advanced_bufferevents.txt
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ bufferevent_openssl_socket_new(struct event_base *base,
--------

You can create two kinds of SSL bufferevents: a filter-based bufferevent that
communicates over another underlying bufferevent, or an socket-based
communicates over another underlying bufferevent, or a socket-based
bufferevent that tells OpenSSL to communicate with the network directly over. In
either case, you must provide an SSL object and a description of the SSL
object's state. The state should be BUFFEREVENT_SSL_CONNECTING if the SSL is
Expand All @@ -458,7 +458,7 @@ The usual options are accepted; BEV_OPT_CLOSE_ON_FREE makes the SSL object
and the underlying fd or bufferevent get closed when the openssl bufferevent
itself is closed.

If you're creating an socket-based bufferevent and the SSL object already
If you're creating a socket-based bufferevent and the SSL object already
has a socket set, you do not need to provide the socket yourself: just pass
-1. You can also set the fd later with bufferevent_setfd().

Expand Down
2 changes: 1 addition & 1 deletion Ref7_evbuffer.txt
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ EVBUFFER_EOL_CRLF_STRICT::

EVBUFFER_EOL_CRLF::
The end of the line is an optional carriage return, followed by a
linefeed. (In other words, it is either a "\r\n" or an "\n".)
linefeed. (In other words, it is either a "\r\n" or a "\n".)
This format is useful in parsing text-based Internet
protocols, since the standards generally prescribe a "\r\n"
line-terminator, but nonconformant clients sometimes say just
Expand Down

0 comments on commit de8d592

Please sign in to comment.