We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 271e0c5 commit 841035aCopy full SHA for 841035a
subsys/net/ip/connection.c
@@ -42,16 +42,16 @@ LOG_MODULE_REGISTER(net_conn, CONFIG_NET_CONN_LOG_LEVEL);
42
/** Local address set */
43
#define NET_CONN_LOCAL_ADDR_SET BIT(2)
44
45
-/** Local port set */
+/** Remote port set */
46
#define NET_CONN_REMOTE_PORT_SPEC BIT(3)
47
48
-/** Remote port set */
+/** Local port set */
49
#define NET_CONN_LOCAL_PORT_SPEC BIT(4)
50
51
-/** Local address specified */
+/** Remote address specified */
52
#define NET_CONN_REMOTE_ADDR_SPEC BIT(5)
53
54
-/** Remote address specified */
+/** Local address specified */
55
#define NET_CONN_LOCAL_ADDR_SPEC BIT(6)
56
57
#define NET_CONN_RANK(_flags) (_flags & 0x78)
0 commit comments