1 // Copyright 2023 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef BSSL_FILLINS_NET_ERRORS_H 6 #define BSSL_FILLINS_NET_ERRORS_H 7 8 #include <openssl/base.h> 9 10 namespace bssl { 11 12 enum Error { 13 OK = 0, 14 }; 15 16 } // namespace bssl 17 18 #endif // BSSL_FILLINS_NET_ERRORS_H 19