/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ /* * Copyright (c) 2023, Oracle and/or its affiliates. * * TLS Protocol definitions * * From https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml */ #ifndef _TLS_PROT_H #define _TLS_PROT_H /* * TLS Record protocol: ContentType */ enum { … }; /* * TLS Alert protocol: AlertLevel */ enum { … }; /* * TLS Alert protocol: AlertDescription */ enum { … }; #endif /* _TLS_PROT_H */