public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
From: Sebastian Huber <sh@sourceware.org>
To: newlib-cvs@sourceware.org
Subject: [newlib-cygwin] Add a TOE KTLS mode and a TOE hook for allocating TLS sessions.
Date: Mon, 11 Jul 2022 11:50:58 +0000 (GMT)	[thread overview]
Message-ID: <20220711115058.C9F4D3854160@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=12fb531a70a1b2db10e5a50bcc071b18021594c6

commit 12fb531a70a1b2db10e5a50bcc071b18021594c6
Author: John Baldwin <jhb@FreeBSD.org>
Date:   Tue Oct 8 21:34:06 2019 +0000

    Add a TOE KTLS mode and a TOE hook for allocating TLS sessions.
    
    This adds the glue to allocate TLS sessions and invokes it from
    the TLS enable socket option handler.  This also adds some counters
    for active TOE sessions.
    
    The TOE KTLS mode is returned by getsockopt(TLSTX_TLS_MODE) when
    TOE KTLS is in use on a socket, but cannot be set via setsockopt().
    
    To simplify various checks, a TLS session now includes an explicit
    'mode' member set to the value returned by TLSTX_TLS_MODE.  Various
    places that used to check 'sw_encrypt' against NULL to determine
    software vs ifnet (NIC) TLS now check 'mode' instead.
    
    Reviewed by:    np, gallatin
    Sponsored by:   Chelsio Communications
    Differential Revision:  https://reviews.freebsd.org/D21891

Diff:
---
 newlib/libc/sys/rtems/include/netinet/tcp.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/newlib/libc/sys/rtems/include/netinet/tcp.h b/newlib/libc/sys/rtems/include/netinet/tcp.h
index 37ba3bb55..125cacb28 100644
--- a/newlib/libc/sys/rtems/include/netinet/tcp.h
+++ b/newlib/libc/sys/rtems/include/netinet/tcp.h
@@ -357,6 +357,7 @@ struct tcp_function_set {
 #define	TCP_TLS_MODE_NONE	0
 #define	TCP_TLS_MODE_SW		1
 #define	TCP_TLS_MODE_IFNET	2
+#define	TCP_TLS_MODE_TOE	3
 
 /*
  * TCP Control message types


                 reply	other threads:[~2022-07-11 11:50 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220711115058.C9F4D3854160@sourceware.org \
    --to=sh@sourceware.org \
    --cc=newlib-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).