Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch shttp3 server",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/_examples/shttp3/server/main.go"
},
{
"name": "Launch shttp3 client",
"type": "go",
"request": "launch",
"mode": "debug",
"args": ["-s","19-ffaa:1:1067,[127.0.0.1]:443"],
"program": "${workspaceFolder}/_examples/shttp3/client/main.go"
}, {
"name": "Launch helloquic server",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/_examples/shttp3/server/main.go"
},
{
"name": "Launch helloquic client",
"type": "go",
"request": "launch",
"mode": "debug",
"args": ["-remote","19-ffaa:1:1094,[127.0.0.1]:12345", "-race","-count","5"],
"program": "${workspaceFolder}/_examples/helloquic/helloquic.go"
}
]
}
58 changes: 53 additions & 5 deletions _examples/go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,64 @@
module examples

go 1.16
go 1.20

require (
github.com/golang/protobuf v1.5.2
github.com/gorilla/handlers v1.5.1
github.com/lucas-clemente/quic-go v0.23.0
github.com/netsec-ethz/scion-apps v0.5.1-0.20220504120040-79211109ed3f
github.com/netsec-ethz/scion-apps v0.0.0-00010101000000-000000000000
github.com/quic-go/quic-go v0.34.0
github.com/scionproto/scion v0.6.1-0.20220202161514-5883c725f748
google.golang.org/grpc v1.40.0
google.golang.org/protobuf v1.27.1
inet.af/netaddr v0.0.0-20210903134321-85fa6c94624e
google.golang.org/protobuf v1.28.0
inet.af/netaddr v0.0.0-20230525184311-b8eac61e914a
)

require (
github.com/antlr/antlr4 v0.0.0-20181218183524-be58ebffde8e // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/britram/borat v0.0.0-20181011130314-f891bcfcfb9b // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/dchest/cmac v0.0.0-20150527144652-62ff55a1048c // indirect
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/google/gopacket v1.1.16-0.20190123011826-102d5ca2098c // indirect
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
github.com/inconshreveable/log15 v2.16.0+incompatible // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/netsec-ethz/rains v0.5.0 // indirect
github.com/onsi/ginkgo/v2 v2.2.0 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/prometheus/client_golang v1.11.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.0 // indirect
github.com/prometheus/procfs v0.6.0 // indirect
github.com/quic-go/qtls-go1-19 v0.3.2 // indirect
github.com/quic-go/qtls-go1-20 v0.2.2 // indirect
github.com/uber/jaeger-client-go v2.29.1+incompatible // indirect
github.com/uber/jaeger-lib v2.0.0+incompatible // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.17.0 // indirect
go4.org/intern v0.0.0-20211027215823-ae77deb06f29 // indirect
go4.org/unsafe/assume-no-moving-gc v0.0.0-20230525183740-e7c30c78aeb2 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect
golang.org/x/mod v0.9.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/tools v0.7.0 // indirect
google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)

replace github.com/scionproto/scion => github.com/netsec-ethz/scion v0.6.1-0.20220929101513-2408583f35d1
Expand Down
Loading