aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/data_src.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Constify some local variablesJack Lloyd2018-06-081-2/+2
|
* Add missing includeJack Lloyd2017-10-051-0/+1
| | | | | In filesystem free build, we weren't including any definition of std::istream. GH #1238
* Add wrappers for reinterpret_cast between char* and uint8_t*Jack Lloyd2017-10-031-5/+5
| | | | | | | Generally speaking reinterpret_cast is sketchy stuff. But the special case of char*/uint8_t* is both common and safe. By isolating those, the remaining (likely sketchy) cases are easier to grep for.
* Fix various MSVC warningsJack Lloyd2017-08-311-4/+4
| | | | Based on VC2017 output
* Compile fixJack Lloyd2016-12-231-0/+1
|
* Fix file descriptor leak introduced in bcae34c0cJack Lloyd2016-12-231-4/+1
| | | | Caused tests to fail on CI
* More filter testsJack Lloyd2016-12-221-9/+5
| | | | | Expose Data{Source,Sink}_Stream types even if no filesystem is available. Instead just guard the constructors taking a pathname.
* Convert to using standard uintN_t integer typesJack Lloyd2016-12-181-10/+10
| | | | | | Renames a couple of functions for somewhat better name consistency, eg make_u32bit becomes make_uint32. The old typedefs remain for now since probably lots of application code uses them.
* Add IncludeOS target. Make filesystem support optional.Jack Lloyd2016-10-101-1/+8
|
* Remove redundant initialization. Closes GH #399Jack Lloyd2016-02-071-1/+0
|
* Mass-prefix member vars with m_René Korthaus2016-01-081-40/+40
|
* Add missing assignment in DataSource::discard_nextJack Lloyd2015-12-311-0/+1
| | | | Reported on the mailing list by Falko
* Move DataSource to utils and rewrite PEM encoding to avoid filtersJack Lloyd2015-10-141-0/+212
Removes filters as as an internal dependency pretty much entirely (outside of some dusty corners in misc).