blob: 7bb4a5dd488bd5ac488cf72542732af3b751bd45 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build ignore
package main
import (
"fmt"
"log"
"v.io/v23"
"v.io/v23/rpc"
"v.io/x/lib/vlog"
_ "v.io/x/ref/profiles/roaming"
)
func main() {
ctx, shutdown := v23.Init()
defer shutdown()
server, err := v23.NewServer(ctx)
if err != nil {
vlog.Fatalf("unexpected error: %q", err)
}
listenSpec := v23.GetListenSpec(ctx)
fmt.Printf("listen spec: %v\n", listenSpec)
_, err = server.Listen(listenSpec)
if err != nil {
vlog.Fatalf("unexpected error: %q", err)
}
err = server.Serve("roamer", &dummy{}, nil)
if err != nil {
log.Fatalf("unexpected error: %q", err)
}
watcher := make(chan rpc.NetworkChange, 1)
server.WatchNetwork(watcher)
for {
status := server.Status()
fmt.Printf("Endpoints: %d created:\n", len(status.Endpoints))
for _, ep := range status.Endpoints {
fmt.Printf(" %s\n", ep)
}
fmt.Printf("Mounts: %d mounts:\n", len(status.Mounts))
for _, ms := range status.Mounts {
fmt.Printf(" %s\n", ms)
}
change := <-watcher
fmt.Printf("Network change: %s", change.DebugString())
}
}
type dummy struct{}
func (d *dummy) Echo(call rpc.ServerCall, arg string) (string, error) {
return arg, nil
}