Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(headers): use a Vec + a map for Cookie #1153

Closed
wants to merge 2 commits into from
Closed

feat(headers): use a Vec + a map for Cookie #1153

wants to merge 2 commits into from

Commits on Apr 27, 2017

  1. feat(headers): use a Vec + a map for Cookie

    Use a Vec and a map for the Cookie header in order to satisfy the need
    for both duplicate names (keys) from a client perspective and single
    value for a given key from a server perspective .
    
    BREAKING CHANGE: This change the format of the cookie header, any
    previous implementation will have to be changed.
    dorfsmay committed Apr 27, 2017
    Configuration menu
    Copy the full SHA
    765f175 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2017

  1. refactor(headers): change HashMap to MapVec

    Use MapVec instead of HashMap for the Cookie header as per sugestion
    from @seanmonstar for performance purpose.
    dorfsmay committed Apr 28, 2017
    Configuration menu
    Copy the full SHA
    e7091f1 View commit details
    Browse the repository at this point in the history