(ctx context.Context, errc chan error, err error)
| 150 | return |
| 151 | } |
| 152 | func replyError(ctx context.Context, errc chan error, err error) { |
| 153 | select { |
| 154 | case <-ctx.Done(): |
| 155 | case errc <- err: |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | var proxyTable = []func(ctx context.Context, proxy *dosproxy.DosproxySession) (chan interface{}, chan error){ |
| 160 | SubscribeLogUpdateRandom: func(ctx context.Context, proxy *dosproxy.DosproxySession) (chan interface{}, chan error) { |
no outgoing calls
no test coverage detected