mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-28 04:12:17 -04:00
CLEANUP: mux-quic: adjust comment for coding-style
Replace single-line comment style by /* ... */ format which is the standard for haproxy documentation.
This commit is contained in:
parent
e0320b8aa6
commit
1b4ebcb041
1 changed files with 4 additions and 4 deletions
|
|
@ -74,10 +74,10 @@ struct qcc {
|
|||
};
|
||||
|
||||
#define QC_SF_NONE 0x00000000
|
||||
#define QC_SF_FIN_RECV 0x00000001 // last frame received for this stream
|
||||
#define QC_SF_FIN_STREAM 0x00000002 // FIN bit must be set for last frame of the stream
|
||||
#define QC_SF_BLK_MROOM 0x00000004 // app layer is blocked waiting for room in the qcs.tx.buf
|
||||
#define QC_SF_DETACH 0x00000008 // cs is detached but there is remaining data to send
|
||||
#define QC_SF_FIN_RECV 0x00000001 /* last frame received for this stream */
|
||||
#define QC_SF_FIN_STREAM 0x00000002 /* FIN bit must be set for last frame of the stream */
|
||||
#define QC_SF_BLK_MROOM 0x00000004 /* app layer is blocked waiting for room in the qcs.tx.buf */
|
||||
#define QC_SF_DETACH 0x00000008 /* cs is detached but there is remaining data to send */
|
||||
|
||||
struct qcs {
|
||||
struct qcc *qcc;
|
||||
|
|
|
|||
Loading…
Reference in a new issue