diff options
| author | Juan Font <juanfontalonso@gmail.com> | 2022-08-15 21:18:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-15 12:18:14 -0700 |
| commit | ffc67806ef9f8c921663a0772d8d599d15afe1e8 (patch) | |
| tree | 43fc282f271bf79e6e97d525a644fe70b3c66e82 | |
| parent | 32a1a3d1c03de7c7a036ce7eefc0ac0599325bb4 (diff) | |
| download | tailscale-ffc67806ef9f8c921663a0772d8d599d15afe1e8.tar.xz tailscale-ffc67806ef9f8c921663a0772d8d599d15afe1e8.zip | |
tailcfg: bump capver for clients to talk Noise over any HTTPS port [capver 39]
Signed-off-by: Juan Font Alonso <juanfontalonso@gmail.com>
| -rw-r--r-- | tailcfg/tailcfg.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tailcfg/tailcfg.go b/tailcfg/tailcfg.go index 5d0f40f16..c4fbdedd6 100644 --- a/tailcfg/tailcfg.go +++ b/tailcfg/tailcfg.go @@ -73,7 +73,8 @@ type CapabilityVersion int // 36: 2022-08-02: added PeersChangedPatch.{Key,DiscoKey,Online,LastSeen,KeyExpiry,Capabilities} // 37: 2022-08-09: added Debug.{SetForceBackgroundSTUN,SetRandomizeClientPort}; Debug are sticky // 38: 2022-08-11: added PingRequest.URLIsNoise -const CurrentCapabilityVersion CapabilityVersion = 38 +// 39: 2022-08-15: clients can talk Noise over arbitrary HTTPS port +const CurrentCapabilityVersion CapabilityVersion = 39 type StableID string |
