gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 133/282: HTTP-COOKIES: mention that a trailing newline is requir


From: gnunet
Subject: [gnurl] 133/282: HTTP-COOKIES: mention that a trailing newline is required
Date: Wed, 01 Apr 2020 14:29:58 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 67d26a361a6867eb7028c12c4d84bf7b93cb515c
Author: Daniel Stenberg <address@hidden>
AuthorDate: Tue Feb 18 14:23:04 2020 +0100

    HTTP-COOKIES: mention that a trailing newline is required
    
    ... so that we know we got the whole and not a partial line.
    
    Also, changed the formatting of the fields away from a table again since
    the table format requires a github-markdown tool version that we don't
    run on the web server atm.
    
    Reported-by: Sunny Bean
    Fixes #4946
    Closes #4947
---
 docs/HTTP-COOKIES.md | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/docs/HTTP-COOKIES.md b/docs/HTTP-COOKIES.md
index 62367c2a9..31af9f6d9 100644
--- a/docs/HTTP-COOKIES.md
+++ b/docs/HTTP-COOKIES.md
@@ -49,17 +49,20 @@
   that start with `#` are treated as comments.
 
   Each line that each specifies a single cookie consists of seven text fields
-  separated with TAB characters.
-
-  |Field| Type  | Example     | Meaning                                       |
-  |---|---------|-------------|-----------------------------------------------|
-  | 0 | string  | example.com | Domain name                                   |
-  | 1 | boolean | FALSE       | Include subdomains                            |
-  | 2 | string  | /foobar/    | Path                                          |
-  | 3 | boolean | TRUE        | Send/receive over HTTPS only                  |
-  | 4 | number  | 1462299217  | Expires at – seconds since Jan 1st 1970, or 0 |
-  | 5 | string  | person      | Name of the cookie                            |
-  | 6 | string  | daniel      | Value of the cookie                           |
+  separated with TAB characters. A valid line must end with a newline
+  character.
+
+### Fields in the file
+
+  Field number, what type and example data and the meaning of it:
+
+  0. string `example.com` - the domain name
+  1. boolean `FALSE` - include subdomains
+  2. string `/foobar/` - path
+  3. boolean `TRUE` - send/receive over HTTPS only
+  4. number `1462299217` - expires at - seconds since Jan 1st 1970, or 0
+  5. string `person` - name of the cookie
+  6. string `daniel` - value of the cookie
 
 ## Cookies with curl the command line tool
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]