mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
new: name aliasing
Create u_alias.go to hold any alias names created by version upgrades or other necessary changes (e.g., upstream breaking change) to prevent further breaking the API.
This commit is contained in:
parent
ef75789913
commit
b4873b0030
1 changed files with 12 additions and 0 deletions
12
u_alias.go
Normal file
12
u_alias.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
package tls
|
||||
|
||||
// This file contains all the alias functions, symbols, names, etc. that
|
||||
// was once used in the old version of the library. This is to ensure
|
||||
// backwards compatibility with the old version of the library.
|
||||
|
||||
// TLS Extensions
|
||||
|
||||
// UtlsExtendedMasterSecretExtension is an alias for ExtendedMasterSecretExtension.
|
||||
//
|
||||
// Deprecated: Use ExtendedMasterSecretExtension instead.
|
||||
type UtlsExtendedMasterSecretExtension = ExtendedMasterSecretExtension
|
Loading…
Add table
Add a link
Reference in a new issue