swift-nio/CONTRIBUTORS.txt

76 lines
2.9 KiB
Plaintext
Raw Normal View History

2017-04-20 19:13:14 +08:00
For the purpose of tracking copyright, this is the list of individuals and
organizations who have contributed source code to SwiftNIO.
For employees of an organization/company where the copyright of work done
by employees of that company is held by the company itself, only the company
needs to be listed here.
## COPYRIGHT HOLDERS
- Apple Inc. (all contributors with '@apple.com')
### Contributors
- Adam Nemecek <adamnemecek@gmail.com>
- Albert Aleksieiev <albert.aleksieiev@gmail.com>
- Alex Blewitt <alex.blewitt@gmail.com>
- Andrew Bennett <635596+therealbnut@users.noreply.github.com>
- Andrew Edwards <andrewangeta@gmail.com>
- Ankit Aggarwal <ankit_aggarwal@apple.com>
- Arjun Nayini <aanayini@gmail.com>
- Bas Broek <bas@basbroek.nl>
- Ben Cohen <airspeedswift@users.noreply.github.com>
- Bouke Haarsma <bouke@haarsma.eu>
2017-04-20 19:13:14 +08:00
- Cory Benfield <cbenfield@apple.com>
- Cotton Hou <himcotton@gmail.com>
- Damiaan Dufaux <damiaan@dpro.be>
2017-04-20 19:13:14 +08:00
- Daniel Dunbar <daniel_dunbar@apple.com>
- Esteban Torres <me@estebantorr.es>
- Eugen <eugenf78@gmail.com>
- Frank Kair <frankkair@gmail.com>
- Franz Busch <privat@franz-busch.de>
- Gopal Sharma <gopal@the-sharmas.org>
- Helge Heß <helge@alwaysrightinstitute.com>
- Ian Partridge <i.partridge@uk.ibm.com>
- Jason Toffaletti <toffaletti@gmail.com>
Changes to `HTTPHeaders` API to integrate with HTTP/2 `HPACKHeaders` API (#525) Motivation: HTTP/2 adds an additional item to a header key/value pair: its indexability. By default, headers can be inserted into the HPACK header table index; sometimes this will be denied (common case is 'content-length' header, which is rarely going to be the same, and will just cause the table to purge more often than is really necessary). Additionally, a header may be marked as not only non-indexable but also non-rewritable by proxies. HTTPHeaders provides nowhere to store this, so the HPACKHeaders implementation referenced in apple/swift-nio-http2#10 was created to add in that capability. Now, given that we really want the HTTP version to be an implementation detail, we want to keep the HPACK details hidden, and would thus be using HTTPHeaders in client APIs. NIOHTTP2 already has a HTTP1-to-HTTP2 channel handler that translates between the two. Thus it behooves us to have the means to copy the actual key/value pairs between the two types without making a round-trip from UTF-8 bytes to UTF-16 Strings. These changes allow NIOHPACK or NIOHTTP2 to implement that round-trip internally. Modifications: - HTTPHeader and HTTPHeaderIndex types are now public. - HTTPHeaders.buffer and HTTPHeaders.headers properties are now public. - A new static method, HTTPHeaders.createHeaderBlock(buffer:headers:) was created to serve as a public means to create a HTTPHeaders from a ByteBuffer from outside NIOHTTP1. @Lukasa suggested this should be a static method rather than an initializer. Result: Nothing in NIOHTTP1 changes in operation. All public types have documentation comments noting that they are only public for very specific reasons, and are not intended for general use. Once this is committed, NIOHPACK & NIOHTTP2 will be able to implement fast round-trips between HTTPHeaders and HPACKHeaders.
2018-08-09 21:03:31 +08:00
- Jim Dovey <jimdovey@mac.com>
- Johannes Weiss <johannesweiss@apple.com>
- John Connolly <connoljo2@gmail.com>
- Karim ElNaggar <karimfarid.naggar@gmail.com>
2017-04-20 19:13:14 +08:00
- Kevin Clark <kevin.clark@apple.com>
- Kyle Bashour <kylebshr@me.com>
- Kyle Jessup <kyle@perfect.org>
- Lev Walkin <vlm@lionet.info>
- Ludovic Dewailly <me@ldewailly.com>
- Markus Jais <markusjais@googlemail.com>
- Matt Eaton <agnosticdev@gmail.com>
- Max Desiatov <max.desiatov@gmail.com>
2017-04-20 19:13:14 +08:00
- Max Moiseev <moiseev@apple.com>
- Moritz Lang <hi@slashmo.codes>
- Nethra Ravindran <nethra.ravindran@in.ibm.com>
- Norio Nomura <norio.nomura@gmail.com>
2017-04-20 19:13:14 +08:00
- Norman Maurer <norman_maurer@apple.com>
- Ole Begemann <ole@oleb.net>
- OleG <emptystamp@gmail.com>
- Portia <portia-s@users.noreply.github.com>
- Pushkar N Kulkarni <pushkar.nk@in.ibm.com>
- Rukshani Athapathu <arukshani@users.noreply.github.com>
- Sebastian Thiebaud <770074+SebastianThiebaud@users.noreply.github.com>
- Semen Zhydenko <simeon.zhidenko@gmail.com>
- Shaun Hubbard <shaunhubbard2013@icloud.com>
- Siemen Sikkema <siemensikkema@users.noreply.github.com>
- Stuart Hinson <stuart.hinson@gmail.com>
- Tanner <me@tanner.xyz>
- Tiago Martinho <martinho@thoughtworks.com>
- Tibor Bödecs <mail.tib@gmail.com>
- Tim <0xTim@users.noreply.github.com>
2017-04-20 19:13:14 +08:00
- Tim Kientzle <tkientzle@apple.com>
- Tomer Doron <tomerd@apple.com>
- Wilson Ding <hello@wilsonding.com>
- fadi-botros <botros_fadi@yahoo.com>
- sun_ <sunlubo.sun@gmail.com>
**Updating this list**
Please do not edit this file manually. It is generated using `./scripts/generate_contributors_list.sh`. If a name is misspelled or appearing multiple times: add an entry in `./.mailmap`