index
:
delta/libevent.git
baserock/release-2.0.21-stable
gh-pages
master
patches-1.1
patches-1.2
patches-1.3
patches-1.4
patches-2.0
patches-2.1
release-2.2-pull
github.com: libevent/libevent.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
buffer.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Spelling fixes in comments and strings.
Nick Mathewson
2009-10-16
1
-4
/
+4
*
Do not drop data from evbuffer when out of memory; reported by Jacek Masiulaniec
Niels Provos
2009-09-24
1
-1
/
+0
*
Treat a negative number of bytes to read as the kernel saying "I don't know."
Nick Mathewson
2009-09-11
1
-2
/
+2
*
Support sendfile on solaris: patch from Caitlin Mercer.
Nick Mathewson
2009-08-16
1
-1
/
+11
*
Add an evbuffer_search_range() to search a bounded range of a buffer
Nick Mathewson
2009-08-07
1
-3
/
+19
*
Refactor evbuffer_readln() into a search-for-eol function and an extract-line...
Nick Mathewson
2009-07-31
1
-42
/
+76
*
Refactor evbuffer_readln to use evbuffer_ptr; remove old evbuffer_iterator.
Nick Mathewson
2009-07-31
1
-41
/
+43
*
Make "deferred callback queue" independent of event_base.
Nick Mathewson
2009-07-26
1
-3
/
+3
*
Fix build on platforms (like Solaris 10, reportedly) which lack a MAP_FILE.
Nick Mathewson
2009-07-23
1
-1
/
+4
*
Fix type on freebsd sendfile. Patch from navin seshadri. Fixes bug 2811991
Nick Mathewson
2009-06-25
1
-1
/
+1
*
Use ev_ssize_t in place of ssize_t *everywhere*.
Nick Mathewson
2009-05-22
1
-10
/
+10
*
Use the native "struct iovec" as our "struct evbuffer_iovec" when available, ...
Nick Mathewson
2009-05-21
1
-12
/
+12
*
Replace reserve/commit with new iovec-based interface. Add a new evbuffer_peek.
Nick Mathewson
2009-05-19
1
-43
/
+134
*
Change the interface of evbuffer_add_reference: give the cleanup function mor...
Nick Mathewson
2009-05-15
1
-2
/
+4
*
New semantics for evbuffer_cb_set_flags().
Nick Mathewson
2009-05-15
1
-1
/
+15
*
More msvc build tweaks.
Nick Mathewson
2009-05-01
1
-19
/
+35
*
Note a place we might do better about lock releasing.
Nick Mathewson
2009-04-29
1
-0
/
+2
*
Fix compile: #elif FOO is not the same as #elif defined(FOO).
Nick Mathewson
2009-04-28
1
-3
/
+3
*
make sendfile work on freebsd
Niels Provos
2009-04-24
1
-3
/
+12
*
Fix for evbuffer_read() when all data fits in penultimate chain.
Nick Mathewson
2009-04-23
1
-5
/
+7
*
Actually stop using EVBUFFER_LENGTH/DATA, and move them to buffer_compat.h
Nick Mathewson
2009-04-17
1
-2
/
+2
*
Make buffer iocp stuff compile happily
Nick Mathewson
2009-04-14
1
-1
/
+1
*
Do not remove an empty chain that we have pinned for reading when we drain th...
Nick Mathewson
2009-04-13
1
-3
/
+7
*
add pin/unpin functions, and a deref-and-free pair.
Nick Mathewson
2009-04-13
1
-10
/
+14
*
Add a reference count to evbuffers.
Nick Mathewson
2009-04-13
1
-3
/
+20
*
Make evbuffer_commit_space trigger callbacks.
Nick Mathewson
2009-04-13
1
-1
/
+3
*
Refactor the code that sets up iovecs for reading into its own function. ioc...
Nick Mathewson
2009-04-13
1
-31
/
+58
*
Facility to make evbuffers get their callbacks deferred.
Nick Mathewson
2009-04-10
1
-2
/
+39
*
Add freeze support to evbuffers.
Nick Mathewson
2009-04-08
1
-22
/
+138
*
Add a new facility to "pin" the memory in an evbuffer chain.
Nick Mathewson
2009-04-08
1
-8
/
+59
*
Add locking to evbuffers.
Nick Mathewson
2009-04-05
1
-97
/
+319
*
Make the new evbuffer callbacks use a new struct-based interface.
Nick Mathewson
2009-04-03
1
-35
/
+79
*
Add a new improved search function.
Nick Mathewson
2009-04-03
1
-11
/
+132
*
Explode less badly in the case where we're told to prepend/append/remove a bu...
Nick Mathewson
2009-02-10
1
-5
/
+9
*
Add an assertion to evbuffer_chain_align so we can't reuse it in the future.
Nick Mathewson
2009-02-10
1
-0
/
+1
*
Enable (and debug) WSARecv for evbuffer iovec-like reads.
Nick Mathewson
2009-02-03
1
-6
/
+12
*
Allocate callback entries with contents 0d out.
Nick Mathewson
2009-02-01
1
-1
/
+1
*
Support temporarily suspending an evbuffer callback. This is different from ...
Nick Mathewson
2009-02-01
1
-4
/
+43
*
make it so that evbuffer_add_file where we read the complete contents of the ...
Niels Provos
2009-01-29
1
-3
/
+15
*
test evbuffer_add_reference
Niels Provos
2009-01-29
1
-2
/
+3
*
Update copyright statements to reflect the facts that:
Nick Mathewson
2009-01-27
1
-2
/
+2
*
Replace all use of config.h with event-config.h.
Nick Mathewson
2009-01-27
1
-19
/
+19
*
Remove all trailing whitespace in all the source files.
Nick Mathewson
2009-01-27
1
-14
/
+14
*
Fix some warnings on linux gcc with --enable-gcc-warnings
Nick Mathewson
2009-01-27
1
-2
/
+2
*
use %zu for off_t
Niels Provos
2009-01-27
1
-1
/
+1
*
make it compile on linux
Niels Provos
2009-01-27
1
-3
/
+6
*
sendfile/mmap and memory reference implementation for evbuffers
Niels Provos
2009-01-27
1
-112
/
+410
*
second argument to evbuffer_pullup should be ssize_t
Niels Provos
2009-01-27
1
-2
/
+1
*
Add a "flags" field to evbuffer callbacks.
Nick Mathewson
2009-01-23
1
-7
/
+23
*
Remove in_callbacks check: allow full recursion in evbuffer callbacks. If yo...
Nick Mathewson
2009-01-23
1
-4
/
+1
[next]