diff options
| author | Adnan Maolood <[email protected]> | 2020-12-18 01:43:18 -0500 |
|---|---|---|
| committer | Adnan Maolood <[email protected]> | 2020-12-18 01:43:18 -0500 |
| commit | 04bd0f452053cc271ecdf1de2aa9f59afe9a1359 (patch) | |
| tree | 8dd71ebbcf591863f6bd920ad89f1ed6d480dbbe | |
| parent | Add ReadRequest and ReadResponse functions (diff) | |
| download | go-gemini-04bd0f452053cc271ecdf1de2aa9f59afe9a1359.tar.xz go-gemini-04bd0f452053cc271ecdf1de2aa9f59afe9a1359.zip | |
Update Request documentation
| -rw-r--r-- | request.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -16,6 +16,7 @@ type Request struct { // For client requests, Host specifies the host on which the URL is sought. // Host must contain a port. + // // This field is ignored by the server. Host string @@ -28,11 +29,13 @@ type Request struct { // RemoteAddr allows servers and other software to record the network // address that sent the request. + // // This field is ignored by the client. RemoteAddr net.Addr // TLS allows servers and other software to record information about the TLS // connection on which the request was received. + // // This field is ignored by the client. TLS tls.ConnectionState |