about summary refs log tree commit diff
path: root/blaze822.c
Commit message (Collapse)AuthorAgeFilesLines
...
* blaze822: add blaze822_headerlenChristian Neukirchen2016-07-161-0/+6
|
* blaze822: add blaze822_chdr to search for a header passed as C stringChristian Neukirchen2016-07-161-0/+9
|
* blaze822: iterate over headersChristian Neukirchen2016-07-141-0/+17
|
* blaze822: add mmap-based mail readerChristian Neukirchen2016-07-141-3/+54
|
* blaze822: remaining fixes in new loopChristian Neukirchen2016-07-141-5/+5
|
* blaze822: avoid overflow in blaze822_hdr_Christian Neukirchen2016-07-141-1/+1
|
* blaze822: rewrite inner loopChristian Neukirchen2016-07-131-44/+58
| | | | | Do nul and crlf clean up first, only when required. Replace line-detection loop with strchr.
* blaze822: allow freeing of null pointersChristian Neukirchen2016-07-131-0/+2
|
* blaze822: blaze822_mem: use body=bodyend instead of body=0Christian Neukirchen2016-07-131-1/+2
| | | | | Else we lose track of where we are during multipart when there is no body (really a body of length 0).
* blaze822: detect too short/empty headersChristian Neukirchen2016-07-131-0/+3
|
* blaze822: compression fixesChristian Neukirchen2016-07-131-2/+4
|
* blaze822: give in and actually unfold the linesChristian Neukirchen2016-07-131-10/+22
|
* blaze822: free line in blaze822_loopChristian Neukirchen2016-07-131-0/+1
|
* blaze822: off by one in blaze822_memChristian Neukirchen2016-07-131-1/+1
|
* blaze822: fix blaze822_mem body startChristian Neukirchen2016-07-131-6/+9
|
* blaze822: fix blaze822_file return value on errorChristian Neukirchen2016-07-131-1/+1
|
* blaze822_priv.h: macro cleanupChristian Neukirchen2016-07-131-6/+0
|
* blaze822: api refactoringChristian Neukirchen2016-07-131-50/+39
|
* blaze822: don't prefix first header with nul bytesChristian Neukirchen2016-07-131-111/+73
| | | | | Instead, look for the first header as a special case. This allows us to parse a header as-is without shifting in memory.
* blaze822: parsing of in-memory messagesChristian Neukirchen2016-07-131-0/+130
|
* blaze822: header cleanupChristian Neukirchen2016-07-131-6/+4
|
* blaze822: hackfixChristian Neukirchen2016-07-121-1/+1
|
* blaze822: default to 0 seconds when none givenChristian Neukirchen2016-07-121-0/+2
|
* blaze822: only increment end if we found the a header separatorChristian Neukirchen2016-07-121-1/+1
|
* blaze822: avoid tolowerChristian Neukirchen2016-07-121-1/+4
|
* add showChristian Neukirchen2016-07-111-0/+16
|
* extract main loopChristian Neukirchen2016-07-111-18/+10
|
* make blaze822 a libraryChristian Neukirchen2016-07-111-48/+61
|
* various code that may end up as a mail clientChristian Neukirchen2016-07-101-0/+373