@@ -41,7 +41,7 @@ import (
41
41
42
42
"github.com/netsec-ethz/scion-apps/pkg/appnet"
43
43
"github.com/netsec-ethz/scion-apps/pkg/appnet/appquic"
44
- "github.com/netsec-ethz/scion-apps/pkg/mpsquic "
44
+ "github.com/netsec-ethz/scion-apps/pkg/nesquic "
45
45
)
46
46
47
47
const (
@@ -219,11 +219,11 @@ func (c *client) run(remote *snet.UDPAddr, paths []snet.Path) {
219
219
}
220
220
var err error
221
221
if remote .IA == appnet .DefNetwork ().IA {
222
- // XXX(matzf) mpsquic does not properly handle destination in same AS. Too many places assume
222
+ // XXX(matzf) nesquic does not properly handle destination in same AS. Too many places assume
223
223
// an existing path. Easy fallback, use normal appquic.
224
224
c .qsess , err = appquic .DialAddr (remote , "host:0" , tlsConf , quicConf )
225
225
} else {
226
- c .qsess , err = mpsquic .Dial (remote , "host:0" , paths , tlsConf , quicConf )
226
+ c .qsess , err = nesquic .Dial (remote , "host:0" , paths , tlsConf , quicConf )
227
227
}
228
228
if err != nil {
229
229
LogFatal ("Unable to dial" , "err" , err )
@@ -336,7 +336,7 @@ type server struct {
336
336
// On any error, the server exits.
337
337
func (s server ) run () {
338
338
// Listen on SCION address
339
- qsock , err := mpsquic .ListenPort (
339
+ qsock , err := nesquic .ListenPort (
340
340
uint16 (* port ),
341
341
& tls.Config {
342
342
Certificates : appquic .GetDummyTLSCerts (),
0 commit comments