Guest User

Untitled

a guest
Aug 16th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. conn, err := ln.Accept()
  2. if err != nil {
  3. if pe, ok := err.(net.Error); ok && pe.Temporary() {
  4. continue
  5. }
  6. return error.Errof("cannot process conns at %s: %s", ln.Addr(), err)
  7. }
Add Comment
Please, Sign In to add comment