diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-11-01 18:47:47 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-11-01 18:47:47 +0000 |
commit | e7f30113e2a244a8acc080097909406688c50236 (patch) | |
tree | d624b1cb08d7e4ff4d3301310c75f0063e035828 /pkg/flipcall/flipcall.go | |
parent | 3e21d5a619c28d10f8850e3f96ef27958283bdc9 (diff) | |
parent | 5694bd080e0e95ba18cbf77038f450fe33b9f8df (diff) |
Merge release-20190806.1-360-g5694bd0 (automated)
Diffstat (limited to 'pkg/flipcall/flipcall.go')
-rwxr-xr-x | pkg/flipcall/flipcall.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pkg/flipcall/flipcall.go b/pkg/flipcall/flipcall.go index 386cee42c..3cdb576e1 100755 --- a/pkg/flipcall/flipcall.go +++ b/pkg/flipcall/flipcall.go @@ -136,8 +136,8 @@ func (ep *Endpoint) unmapPacket() { // Shutdown causes concurrent and future calls to ep.Connect(), ep.SendRecv(), // ep.RecvFirst(), and ep.SendLast(), as well as the same calls in the peer -// Endpoint, to unblock and return errors. It does not wait for concurrent -// calls to return. Successive calls to Shutdown have no effect. +// Endpoint, to unblock and return ShutdownErrors. It does not wait for +// concurrent calls to return. Successive calls to Shutdown have no effect. // // Shutdown is the only Endpoint method that may be called concurrently with // other methods on the same Endpoint. @@ -154,10 +154,12 @@ func (ep *Endpoint) isShutdownLocally() bool { return atomic.LoadUint32(&ep.shutdown) != 0 } -type shutdownError struct{} +// ShutdownError is returned by most Endpoint methods after Endpoint.Shutdown() +// has been called. +type ShutdownError struct{} // Error implements error.Error. -func (shutdownError) Error() string { +func (ShutdownError) Error() string { return "flipcall connection shutdown" } |