(p string)
| 2540 | } |
| 2541 | |
| 2542 | func isDERPPath(p string) bool { |
| 2543 | segments := strings.SplitN(p, "/", 3) |
| 2544 | if len(segments) < 2 { |
| 2545 | return false |
| 2546 | } |
| 2547 | return segments[1] == "derp" |
| 2548 | } |
| 2549 | |
| 2550 | // isReplicaRelayRequest returns true when the request was sent by |
| 2551 | // another coderd replica as part of cross-replica streaming. The |
no outgoing calls