acassis commented on code in PR #6543:
URL: https://github.com/apache/incubator-nuttx/pull/6543#discussion_r910280562


##########
include/net/if.h:
##########
@@ -51,27 +51,43 @@
 #define IFF_RUNNING        (1 << 2) /* Carrier is available */
 #define IFF_IPv6           (1 << 3) /* Configured for IPv6 packet (vs ARP or 
IPv4) */
 #define IFF_BOUND          (1 << 4) /* Bound to a socket */
+#define IFF_LOOPBACK       (1 << 5) /* Is a loopback net */
+#define IFF_POINTOPOINT    (1 << 6) /* Is point-to-point link */
 #define IFF_NOARP          (1 << 7) /* ARP is not required for this packet */
+#define IFF_MULTICAST      (1 <<12) /* Supports multicast. */
+#define IFF_BROADCAST      (1 <<13) /* Broadcast address valid.  */

Review Comment:
   ```suggestion
   #define IFF_BROADCAST      (1 <<13) /* Broadcast address valid. */



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to