]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/quic_vlint.c
Raise an error on syscall failure in tls_retry_write_records
[thirdparty/openssl.git] / crypto / quic_vlint.c
index 92f14c6d772136ac81a1143edf4e2c22ff353ff3..0238985963195184f311c23e853b4b95f5a16af4 100644 (file)
@@ -1,6 +1,8 @@
 #include "internal/quic_vlint.h"
 #include "internal/e_os.h"
 
+#ifndef OPENSSL_NO_QUIC
+
 void ossl_quic_vlint_encode_n(uint8_t *buf, uint64_t v, int n)
 {
     if (n == 1) {
@@ -75,3 +77,5 @@ int ossl_quic_vlint_decode(const unsigned char *buf, size_t buf_len, uint64_t *v
     *v = x;
     return dec_len;
 }
+
+#endif