MCPcopy
hub / github.com/google/gvisor / AsyncFileServer

Struct AsyncFileServer

pkg/sentry/state/stateipc/server.go:33–39  ·  view source on GitHub ↗

AsyncFileServer is a URPC handler that serves files to a stateipc client.

Source from the content-addressed store, hash-verified

31
32// AsyncFileServer is a URPC handler that serves files to a stateipc client.
33type AsyncFileServer struct {
34 // asyncFileServer is the underlying implementation. Some methods are
35 // defined on asyncFileServer rather than AsyncFileServer, since
36 // urpc.Server.Register disallows non-RPC methods (including unexported
37 // methods) on handlers.
38 asyncFileServer
39}
40
41type asyncFileServer struct {
42 filesMu sync.Mutex

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected