]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: mux-quic: adjust comment for coding-style
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Mon, 7 Mar 2022 14:16:56 +0000 (15:16 +0100)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Wed, 23 Mar 2022 08:49:08 +0000 (09:49 +0100)
Replace single-line comment style by /* ... */ format which is the
standard for haproxy documentation.

include/haproxy/mux_quic-t.h

index b2730b7ca5977d20c6077610422199364bcf13fe..e7ae2331f54a8cd57a27f1accabe5394b25e5496 100644 (file)
@@ -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;