]> git.meshlink.io Git - utcp/commitdiff
Turn magic numbers into #defines.
authorGuus Sliepen <guus@meshlink.io>
Sun, 18 Oct 2015 18:21:06 +0000 (20:21 +0200)
committerGuus Sliepen <guus@sliepen.org>
Sun, 2 Jul 2017 10:03:49 +0000 (12:03 +0200)
utcp.c
utcp_priv.h

diff --git a/utcp.c b/utcp.c
index 3d1c5f78f362ce30e14da349b1b26547d7c547cc..c026ce7b9de58b2bdefb71ece87bac739e2c04e4 100644 (file)
--- a/utcp.c
+++ b/utcp.c
@@ -1321,8 +1321,8 @@ struct utcp *utcp_init(utcp_accept_t accept, utcp_pre_accept_t pre_accept, utcp_
        utcp->pre_accept = pre_accept;
        utcp->send = send;
        utcp->priv = priv;
-       utcp->mtu = 1000;
-       utcp->timeout = 60;
+       utcp->mtu = DEFAULT_MTU;
+       utcp->timeout = DEFAULT_USER_TIMEOUT; // s
 
        return utcp;
 }
index 69f1b0da5347371649da4dbaa92973cfed0617eb..3a119f16cf60a878e327e0b9ebe49efe3aff2f62 100644 (file)
 #define DEFAULT_RCVBUFSIZE 0
 #define DEFAULT_MAXRCVBUFSIZE 131072
 
+#define DEFAULT_MTU 1000
+
+#define DEFAULT_USER_TIMEOUT 60 // s
+
 struct hdr {
        uint16_t src; // Source port
        uint16_t dst; // Destination port