(ctx context.Context, stats stats.ConnStats)
| 64 | } |
| 65 | |
| 66 | func (ch *combinedHandler) HandleConn(ctx context.Context, stats stats.ConnStats) { |
| 67 | for _, h := range ch.handlers { |
| 68 | h.HandleConn(ctx, stats) |
| 69 | } |
| 70 | } |
nothing calls this directly
no test coverage detected