mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
fd65b0f src: refactor method parsing 678a9e2 test: Assert against correct error messages e2e467b Update http-parser to 2.6.1 4e382f9 readme: fix build status badge bee4817 Bump version to 2.6.0 777ba4e src: introduce `http_parser_url_init` 483eca7 doc: updated README.md to include multi-threading example e557b62 src: support LINK/UNLINK (RFC 2068, draft-snell-link-method) e01811e src: fixed compile error C2143 for vs2012 b36c2a9 header: treat Wine like MinGW eb5e992 src: support ACL (WebDAV, RFC3744, Section 8.1). 4f69be2 readme: update WebSocket link to RFC6455 b5bcca8 test: `SEARCH`, `PURGE` and `MKCALENDAR` 8b1d652 src: support BIND/REBIND/UNBIND (WebDAV, RFC5842) 7d75dd7 src: support IPv6 Zone ID as per RFC 6874 ab0b162 src: use ARRAY_SIZE instead of sizeof() 39ff097 src: remove double check f6f436a src: fix invalid memory access in http_parse_host 2896229 make: fix dynamic library extension for OS X 39c2c1e Bump version to 2.5.0 dff604d src: support body in Upgrade requests d767545 src: callbacks chunk boundaries: header/complete 2872cb7 test: regression test for incomplete/corrupted hdr 5d414fc makefile: add un/install targets d547f3b url_parser: remove mixed declarations 7ecf775 src: partially revert 959f4cb to fix nread value 7ba3123 header: fix field sizes 53063b7 Add function to initialize http_parser_settings 1b31580 Bump version to 2.4.2 59569f2 src: skip lws between `connection` values 36f107f Bump version to 2.4.1 280af69 src: fix build on MSVC 956c8a0 Bump version to 2.4.0 167dcdf readme: fix typo 3f7ef50 src: annotate with likely/unlikely 265f9d0 bench: add chunked bytes 091ebb8 src: simple Connection header multi-value parsing 959f4cb src: remove reexecute goto 0097de5 src: use memchr() in h_general header value c6097e1 src: faster general header value loop 2630060 src: less loads in header_value loop 0cb0ee6 src: tighten header field/value loops 6132d1f src: save progress 3f1a05a benchmark: initial 94a55d1 send travis irc notifications to #node-ci 5fd51fd Fix warning on test suite found by Clang Analyzer 0b43367 http_parser: Follow RFC-7230 Sec 3.2.4 11ecb42 Docs fix 7bbb774 doc: add very basic docs for `http_parser_execute` 17ed7de header: typo fix in a comment 5b951d7 src: fix clang warning 1317eec Added support for MKCALENDAR 08a2cc3 very minor spelling/grammar changes in README.md 158dd3b signing the CLA is no longer a requirement 8d9e5db fix typo in README comment d19e129 contrib: fixed resource leak in parsertrace 24e2d2d Allow HTTP_MAX_HEADER_SIZE to be defined externally 56f7ad0 Bump version to 2.3.0 76f0f16 Fix issues around multi-line headers 5d9c382 Include separating ws when folding header values git-subtree-dir: src/beast/beast/http/impl/http-parser git-subtree-split: fd65b0fbbdb405425a14d0e49f5366667550b1c2
88 lines
1.1 KiB
Plaintext
88 lines
1.1 KiB
Plaintext
# .gitignore
|
|
|
|
# Ignore vim swap files.
|
|
*.swp
|
|
|
|
# Ignore SCons support files.
|
|
.sconsign.dblite
|
|
|
|
# Ignore python compiled files.
|
|
*.pyc
|
|
|
|
# Ignore Macintosh Desktop Services Store files.
|
|
.DS_Store
|
|
|
|
# Ignore backup/temps
|
|
*~
|
|
|
|
# Ignore object files.
|
|
*.o
|
|
build
|
|
tags
|
|
TAGS
|
|
bin/rippled
|
|
Debug/*.*
|
|
Release/*.*
|
|
|
|
# Ignore coverage files.
|
|
*.gcno
|
|
*.gcda
|
|
*.gcov
|
|
|
|
# Ignore locally installed node_modules
|
|
/node_modules
|
|
|
|
# Ignore tmp directory.
|
|
tmp
|
|
|
|
# Ignore database directory.
|
|
db/
|
|
db/*.db
|
|
db/*.db-*
|
|
|
|
# Ignore debug logs
|
|
debug_log.txt
|
|
|
|
# Ignore customized configs
|
|
rippled.cfg
|
|
validators.txt
|
|
test/config.js
|
|
|
|
# Doxygen generated documentation output
|
|
HtmlDocumentation
|
|
|
|
# Xcode user-specific project settings
|
|
# Xcode
|
|
.DS_Store
|
|
*/build/*
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
xcuserdata
|
|
profile
|
|
*.moved-aside
|
|
DerivedData
|
|
.idea/
|
|
*.hmap
|
|
|
|
# Intel Parallel Studio 2013 XE
|
|
My Amplifier XE Results - RippleD
|
|
|
|
# KeyvaDB files
|
|
*.key
|
|
*.val
|
|
|
|
# Compiler intermediate output
|
|
/out.txt
|
|
|
|
# Build Log
|
|
rippled-build.log
|
|
|
|
# Profiling data
|
|
gmon.out
|