Skip to content

Instantly share code, notes, and snippets.

View dachinat's full-sized avatar
💭
I may be slow to respond.

Dachi Natsvlishvili dachinat

💭
I may be slow to respond.
View GitHub Profile
@dachinat
dachinat / server.go
Created November 25, 2023 18:23 — forked from fwoodruff/server.go
QUIC Server
package main
import (
"crypto/tls"
"log"
"github.com/quic-go/quic-go"
"golang.org/x/net/context"
)
@dachinat
dachinat / client.go
Created November 25, 2023 18:23 — forked from fwoodruff/client.go
QUIC Client
package main
import (
"bytes"
"context"
"crypto/tls"
"log"
"net/http"
"time"