diff options
| author | adnano <[email protected]> | 2020-09-25 20:31:03 -0400 |
|---|---|---|
| committer | adnano <[email protected]> | 2020-09-25 20:31:07 -0400 |
| commit | be55224f89540124815c9e981423b2421b2dc944 (patch) | |
| tree | 42a9416b82fe735d532745a6aa35f0b1a6aee1b2 /README.md | |
| parent | Add method to check if hostname is found in KnownHosts (diff) | |
| download | go-gemini-be55224f89540124815c9e981423b2421b2dc944.tar.xz go-gemini-be55224f89540124815c9e981423b2421b2dc944.zip | |
Fix known host expires check
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ The way this is implemented in this package is like so: 1. Client makes a request with `NewRequest`. The client then sends the request with `Send(*Request) (*Response, error)`. The client can optionally verify - the server certificates with `VerifyCertificate(*x509.Certificate, *Request)` + the server certificate with `VerifyCertificate(*x509.Certificate, *Request)` 2. Server recieves the request and constructs a response. The server calls the `Serve(*ResponseWriter, *Request)` method on the `Handler` field. The handler writes the response. The server then closes |