diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-08-02 13:59:47 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-08-02 13:59:47 -0400 |
commit | 4d4ccc505b0c9639c68b42645d5a29497c48fe4d (patch) | |
tree | e4c12832ff423ac86ba16e39444b88ab5f648d1b /src/or/connection.c | |
parent | 46ef4487d3914cac1aba148ec58ff271bda3c636 (diff) | |
download | tor-4d4ccc505b0c9639c68b42645d5a29497c48fe4d.tar.gz tor-4d4ccc505b0c9639c68b42645d5a29497c48fe4d.zip |
Search for remaining references to 'bufferevent'.
Remove or adjust as appropriate.
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 40fc2bc662..ceb2883e3f 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -3567,8 +3567,8 @@ connection_fetch_from_buf_line(connection_t *conn, char *data, return fetch_from_buf_line(conn->inbuf, data, data_len); } -/** As fetch_from_buf_http, but fetches from a connection's input buffer_t or - * its bufferevent as appropriate. */ +/** As fetch_from_buf_http, but fetches from a connection's input buffer_t as + * appropriate. */ int connection_fetch_from_buf_http(connection_t *conn, char **headers_out, size_t max_headerlen, @@ -3880,7 +3880,7 @@ connection_handle_write(connection_t *conn, int force) * Try to flush data that's waiting for a write on <b>conn</b>. Return * -1 on failure, 0 on success. * - * Don't use this function for regular writing; the buffers/bufferevents + * Don't use this function for regular writing; the buffers * system should be good enough at scheduling writes there. Instead, this * function is for cases when we're about to exit or something and we want * to report it right away. |