From 43bdc888dd474381506ccdd6fbc0d53646d24984 Mon Sep 17 00:00:00 2001 From: Scott Feldman Date: Tue, 28 Mar 2023 11:19:17 -0700 Subject: [PATCH] move IPPROTO_TLS to netdev to avoid src/syscall dependency --- src/syscall/net.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/syscall/net.go b/src/syscall/net.go index 5f8c50da9..c1dd3e150 100644 --- a/src/syscall/net.go +++ b/src/syscall/net.go @@ -44,10 +44,4 @@ const ( IPPROTO_TCP = 0x6 IPPROTO_UDP = 0x11 F_SETFL = 0x4 - - // TINYGO: Made up, not a real IP protocol number. This is used to - // create a TLS socket on the device, assuming the device supports mbed - // TLS. - - IPPROTO_TLS = 0xFE )