leitner
|
3885650d81
|
on Linux, in iob_send, if MSG_MORE is defined, and the request type
lends itself to it, used sendto/sendmsg with MSG_MORE instead of
TCP_CORK (saves two syscalls)
|
10 years ago |
leitner
|
953eb639b2
|
on Linux, save a few syscalls by using sendto/sendmsg with MSG_MORE
instead of write/writev + setsockopt TCP_CORK
|
10 years ago |
leitner
|
a691887e75
|
forgot to check in the actual code m(
|
10 years ago |
leitner
|
88167b5ce1
|
add socket_fastopen, socket_fastopen_connect4, socket_fastopen_connect6 and socket_quickack
|
10 years ago |
leitner
|
8bdf66a1f5
|
add scan_html_tagarg
|
10 years ago |
leitner
|
1d723c8da4
|
scan_html forgot to output '<' when it did not know the tag coming in
|
10 years ago |
leitner
|
0aa50a19a4
|
add fmt_html_tagarg, fmt_xml
|
10 years ago |
leitner
|
7c5d119f9a
|
fix buffer_get
|
10 years ago |
leitner
|
4404ab35f3
|
revert to level triggering for epoll (forgot io_wantread)
|
10 years ago |
leitner
|
f278f9c049
|
also install compiletimeassert.h
|
10 years ago |
leitner
|
595a01fb1b
|
fix copy/paste error
|
10 years ago |
leitner
|
dc4d204f4e
|
also mention scan_ip6if(3)
|
10 years ago |
leitner
|
967e3ce019
|
revert edge triggering epoll; it had reliability and fairness issues and
was also not actually faster
|
10 years ago |
leitner
|
8b3eb0be7c
|
documented wrong return type
|
10 years ago |
leitner
|
798c06a785
|
add more comments
|
11 years ago |
leitner
|
25d9c5a6c7
|
add helpful #define HAVE_EAGAIN_READWRITE
|
11 years ago |
leitner
|
39e7ee90bb
|
introduce io_eagain_read and io_eagain_write (discontinue using io_eagain plz)
|
11 years ago |
leitner
|
d9cbb3940c
|
it turns out you don't need -1/EGAIN to know edge triggering told you
there is no more data, it's enough to read/write less than you asked for
|
11 years ago |
leitner
|
f3c0e69988
|
fix and document iarray
|
11 years ago |
leitner
|
5baf943f0a
|
finish epoll move to edge triggering
|
11 years ago |
leitner
|
0f6e586fc9
|
fix some bugs that cppcheck found
|
11 years ago |
leitner
|
6d18d4ecc3
|
better comment
|
11 years ago |
leitner
|
4ecc33dcea
|
catch not enough bytes in input buffer case
|
11 years ago |
leitner
|
8106f8c5a6
|
remove superfluous &0x7f
|
11 years ago |
leitner
|
8581b74a84
|
on FreeBSD, on a PF_INET6 socket, recvfrom and friends can actually
return a sockaddr with family PF_INET. WTF? Work around that.
|
11 years ago |
leitner
|
63b08692d0
|
check value to large error for asn1derlength
|
11 years ago |
leitner
|
cf1406735c
|
much shorter way to do the same thing
|
11 years ago |
leitner
|
708c358a74
|
for asn1derlength: save a few bytes
for asn1dertag: catch too-large-value overflow
|
11 years ago |
leitner
|
24d1ccb1b7
|
reject non-minimally encoded ASN.1 DER data
split scan_asn1derlength into scan_asn1derlength and scan_asn1derlengthvalue
|
11 years ago |
leitner
|
f4414a2e80
|
remove io_starteventloop
|
11 years ago |
leitner
|
b6af872d43
|
update Makefile
|
11 years ago |
leitner
|
321b30565d
|
change return type to void
|
11 years ago |
leitner
|
90acf965e7
|
add iarray_length
|
11 years ago |
leitner
|
a544abc39c
|
switch io_fds from array to newly implemented (hopefully thread-safe) iarray
switch epoll from level triggering to edge triggering
|
11 years ago |
leitner
|
dd436c5bf8
|
map mmap_read return a const char*
|
11 years ago |
leitner
|
c548cce5a1
|
another attempt at a thread-safe array
|
11 years ago |
leitner
|
c608502cd8
|
add scan_ulongn, scan_8longn, scan_xlongn, scan_longn, scan_netstring
|
11 years ago |
leitner
|
74d676fc62
|
fix typo in man page
make use of __uint128_t in scan_ulongn and provide long long based
implementation for 32-bit platforms
|
11 years ago |
leitner
|
9b6671efee
|
add buffer_tosa check to marshal.c
failed attempt to improve scan_ulongn, results in essentially same code
but the C code looks slighly better so I'm keeping it
|
11 years ago |
leitner
|
cf3dc34288
|
actually increase stralloc.len
|
11 years ago |
leitner
|
53e2af7389
|
never close fd 0, 1 or 2 in buffer_close
|
11 years ago |
leitner
|
85d14a2703
|
ignore entities.h
|
11 years ago |
leitner
|
9af06ac843
|
remove can't happen code and instead force a compile time error
|
11 years ago |
leitner
|
baec005507
|
improved code path for typical platforms where there is a wider integer type
|
11 years ago |
leitner
|
08ba483bfb
|
catch other potential overflow
|
11 years ago |
leitner
|
4a04c40595
|
get rid of more -Wconversion warnings
|
11 years ago |
leitner
|
f7fee036c1
|
SECURITY: check for integer overflow in stralloc_ready
|
11 years ago |
leitner
|
539ef564ab
|
add unit tests for uint*
|
11 years ago |
leitner
|
a9ca21ffc9
|
remove compiler warnings
|
11 years ago |
leitner
|
324c8e0e8b
|
add rules regarding ent
|
11 years ago |