(code int64, msg string, args ...any)
| 39 | } |
| 40 | |
| 41 | func ipcErrorf(code int64, msg string, args ...any) *IPCError { |
| 42 | return &IPCError{code: code, err: fmt.Errorf(msg, args...)} |
| 43 | } |
| 44 | |
| 45 | var byteBufferPool = &sync.Pool{ |
| 46 | New: func() any { return new(bytes.Buffer) }, |
no outgoing calls
no test coverage detected