/
githubmirror
/
gnutls
Обзор
Документация
Войти
/
githubmirror
/
gnutls
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/system/ktls.h
61 строка
2 KB
Krenzelok Frantisek
Add missing copyright/license headers
24 ноя 2025, 22:42
24 ноя 2025, 22:42
4fbd0d7
Код
Авторство
О чём код?
/* * Copyright (C) 2025 Free Software Foundation, Inc. * * Author: František Krenželok * * This file is part of GnuTLS. * * The GnuTLS is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <https://www.gnu.org/licenses/> * */ #ifndef GNUTLS_LIB_ACCELERATED_KTLS_H #define GNUTLS_LIB_ACCELERATED_KTLS_H #include "gnutls_int.h" void _gnutls_ktls_enable(gnutls_session_t session); int _gnutls_ktls_set_keys(gnutls_session_t session, gnutls_transport_ktls_enable_flags_t in); ssize_t _gnutls_ktls_send_file(gnutls_session_t session, int fd, off_t *offset, size_t count); int _gnutls_ktls_send_handshake_msg(gnutls_session_t session, gnutls_record_encryption_level_t level, gnutls_handshake_description_t htype, const void *data, size_t data_size); int _gnutls_ktls_send_alert_msg(gnutls_session_t session, gnutls_record_encryption_level_t level, gnutls_alert_level_t alert_level, gnutls_alert_description_t alert_desc); int _gnutls_ktls_send_control_msg(gnutls_session_t session, unsigned char record_type, const void *data, size_t data_size); #define _gnutls_ktls_send(x, y, z) \ _gnutls_ktls_send_control_msg(x, GNUTLS_APPLICATION_DATA, y, z); int _gnutls_ktls_recv_control_msg(gnutls_session_t session, unsigned char *record_type, void *data, size_t data_size); int _gnutls_ktls_recv_int(gnutls_session_t session, content_type_t type, void *data, size_t data_size); #define _gnutls_ktls_recv(x, y, z) \ _gnutls_ktls_recv_int(x, GNUTLS_APPLICATION_DATA, y, z) #endif /* GNUTLS_LIB_ACCELERATED_KTLS_H */