All of lore.kernel.org
 help / color / mirror / Atom feed
From: Xin Long <lucien.xin@gmail.com>
To: linux-sctp@vger.kernel.org
Subject: [PATCH lksctp-tools 0/3] add the support for sctp_sendv and sctp_recvv
Date: Tue, 01 May 2018 10:24:06 +0000	[thread overview]
Message-ID: <cover.1525170039.git.lucien.xin@gmail.com> (raw)

sctp_sendv and sctp_recvv provide an extensible way for an application
to communicate different snd attributes to the SCTP stack when sending
a message, and to pass up different SCTP attributes associated with a
received message to an application when receiving a message, as said
in rfc6458.

This patchset is to add the sctp_sendv and sctp_recvv functions, their
man docs and the function testing for them. These are based on linux
kernel-4.16.

Xin Long (3):
  lib: add the core functions for sctp_sendv and sctp_recvv
  func_tests: add the testing for sctp_sendv and sctp_recvv
  man: add the man docs for sctp_sendv and sctp_recvv

 man/Makefile.am                       |   2 +-
 man/sctp.7                            |   2 +
 man/sctp_bindx.3                      |   2 +
 man/sctp_connectx.3                   |   2 +
 man/sctp_getladdrs.3                  |   2 +
 man/sctp_getpaddrs.3                  |   2 +
 man/sctp_opt_info.3                   |   2 +
 man/sctp_peeloff.3                    |   2 +
 man/sctp_recvmsg.3                    |   1 +
 man/sctp_recvv.3                      |  99 +++++++++++++
 man/sctp_send.3                       |   4 +-
 man/sctp_sendmsg.3                    |   2 +
 man/sctp_sendv.3                      |  97 ++++++++++++
 src/func_tests/Makefile.am            |   5 +
 src/func_tests/test_sctp_sendvrecvv.c | 270 ++++++++++++++++++++++++++++++++++
 src/include/netinet/sctp.h            |  43 ++++++
 src/lib/Versions.map                  |   2 +
 src/lib/recvmsg.c                     |  88 +++++++++++
 src/lib/sendmsg.c                     | 161 ++++++++++++++++++++
 src/testlib/sctputil.h                |  29 ++++
 20 files changed, 815 insertions(+), 2 deletions(-)
 create mode 100644 man/sctp_recvv.3
 create mode 100644 man/sctp_sendv.3
 create mode 100644 src/func_tests/test_sctp_sendvrecvv.c

-- 
2.1.0


                 reply	other threads:[~2018-05-01 10:24 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=cover.1525170039.git.lucien.xin@gmail.com \
    --to=lucien.xin@gmail.com \
    --cc=linux-sctp@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.