Commit Graph

13 Commits

Author SHA1 Message Date
Johannes Weiss 3623789933 update contributors 2021-03-05 19:15:32 +00:00
Johannes Weiss 79f0d16004
update contributors (#1505) 2020-05-04 16:06:32 +01:00
Johannes Weiss 35d8eac588
update contributors (#1350) 2020-01-24 12:35:13 +00:00
Johannes Weiss 4d510c5cd6
update contributors (#1311) 2019-12-17 20:33:04 +00:00
Johannes Weiss a4b9a2816a
update contributors (#1225) 2019-11-08 22:08:37 +00:00
Johannes Weiss ab66c1099d
update contributors (#1127) 2019-09-09 18:58:38 +01:00
Johannes Weiss 846bc4f2f1 update contributors list (#989) 2019-05-01 15:56:12 +01:00
Johannes Weiss 95dade583a update contributors (#921) 2019-03-25 12:41:24 +02:00
Tim 010a6e6e96 Update my name in Contributors list (#798)
Update my name in Contributors list

Motivation:

Name/email was wrong, should fix it. Also added an entry for Tom since he was appearing twice

Modifications:

Updated mail map, ran script to generate contributors list

Result:

New contributors list with correct name/email for me and new contributors added
2019-02-01 16:18:08 +00:00
Johannes Weiss 59b3ac4f82
update contributors file (#668)
Motivation:

Now, shortly before 2.0 is a good time to update the contributors list.

Modifications:

Ran the contributor generation script (ASCII'd my name)

Result:

All contributors get their proper credit.
2018-11-28 09:53:43 +00:00
Jim Dovey 5279d73d25 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 14:03:31 +01:00
Damiaan Dufaux b041136b76 Update contributors.txt using shell script (#398)
Problem: contributors.txt file is out of date

Cause: it is a tedious job to edit this file manually everytime a new person contributes to the project

Solution: create a shell script that extracts all contributors from the git repository and adds it to the contributors.txt file
2018-05-11 17:48:12 +02:00
Johannes Weiß 64cf63d72f initial commit 2017-04-20 12:13:14 +01:00