diff options
| author | Evgeny Ermakov <22344340+unspecd@users.noreply.github.com> | 2021-01-19 18:31:44 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-19 15:31:44 -0800 |
| commit | 1731cf6e49e5a8dabc532fa2ef2894c95212911e (patch) | |
| tree | e1c31e40263738e40f1d217308fb94828bba5fd9 | |
| parent | 85dccbf083e3c6115c5e3757b8efb7aa069acab6 (diff) | |
| download | nng-1731cf6e49e5a8dabc532fa2ef2894c95212911e.tar.gz nng-1731cf6e49e5a8dabc532fa2ef2894c95212911e.tar.bz2 nng-1731cf6e49e5a8dabc532fa2ef2894c95212911e.zip | |
Fix comment in protocol.h (#1410)
| -rw-r--r-- | src/core/protocol.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/protocol.h b/src/core/protocol.h index 91611e9a..a8d03c86 100644 --- a/src/core/protocol.h +++ b/src/core/protocol.h @@ -1,5 +1,5 @@ // -// Copyright 2020 Staysail Systems, Inc. <info@staysail.tech> +// Copyright 2021 Staysail Systems, Inc. <info@staysail.tech> // Copyright 2018 Capitar IT Group BV <info@capitar.com> // // This software is supplied under the terms of the MIT License, a @@ -159,9 +159,7 @@ struct nni_proto { // These flags determine which operations make sense. We use them so that // we can reject attempts to create notification fds for operations that make // no sense. Also, we can detect raw mode, thereby providing handling for -// that at the socket layer (NNG_PROTO_FLAG_RAW). Finally, we provide the -// NNI_PROTO_FLAG_NOMSGQ flag for protocols that do not use the upper write -// or upper read queues. +// that at the socket layer (NNG_PROTO_FLAG_RAW). #define NNI_PROTO_FLAG_RCV 1u // Protocol can receive #define NNI_PROTO_FLAG_SND 2u // Protocol can send #define NNI_PROTO_FLAG_SNDRCV 3u // Protocol can both send & recv |
