elks-enhanced
public
Read
Owner: themaster
Branch: master
Commits: 6893
Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
elks-enhanced
/
elkscmd
/
ktcp
/
config.h
File editor
#ifndef CONFIG_H #define CONFIG_H /* compile time options*/ #define CSLIP 1 /* compile in CSLIP support*/ #define VERBOSE 0 /* =1 compile in more verbose status messages */ /* turn these on for ELKS debugging*/ #define USE_DEBUG_EVENT 1 /* use CTRLP to toggle debug output*/ #define DEBUG_STARTDEF 0 /* default startup debug display*/ #define DEBUG_TCP 0 /* TCP ops*/ #define DEBUG_TCPPKT 0 /* TCP packets info*/ #define DEBUG_TCPDATA 1 /* TCP packet data display*/ #define DEBUG_CWND 0 /* TCP congestion control*/ #define DEBUG_TUNE 1 /* tuning options*/ #define DEBUG_RETRANS 0 /* TCP retransmissions*/ #define DEBUG_WINDOW 0 /* TCP window size*/ #define DEBUG_ACCEPT 0 /* TCP accept*/ #define DEBUG_CLOSE 0 /* TCP close ops*/ #define DEBUG_IP 0 #define DEBUG_ARP 0 #define DEBUG_ETH 0 #define DEBUG_CSLIP 0 /* leave these off for now - too much info*/ #define DEBUG_TCPDEV 0 /* tcpdev_ routines*/ #define DEBUG_MEM 0 /* debug memory allocations*/ #define DEBUG_CB 0 /* dump control blocks*/ #if USE_DEBUG_EVENT void dprintf(const char *, ...); #define DPRINTF dprintf #else #define DPRINTF printf #define dprintf(...) #endif #if DEBUG_TCP #define debug_tcp DPRINTF #else #define debug_tcp(...) #endif #if DEBUG_TUNE #define debug_tune DPRINTF #else #define debug_tune(...) #endif #if DEBUG_CWND #define debug_cwnd DPRINTF #else #define debug_cwnd(...) #endif #if DEBUG_TCPPKT #define debug_tcppkt DPRINTF #else #define debug_tcppkt(...) #endif #if DEBUG_TCPDATA #define debug_tcpdata DPRINTF #else #define debug_tcpdata(...) #endif #if DEBUG_RETRANS #define debug_retrans DPRINTF #else #define debug_retrans(...) #endif #if DEBUG_WINDOW #define debug_window DPRINTF #else #define debug_window(...) #endif #if DEBUG_ACCEPT #define debug_accept DPRINTF #else #define debug_accept(...) #endif #if DEBUG_CLOSE #define debug_close DPRINTF #else #define debug_close(...) #endif #if DEBUG_IP #define debug_ip DPRINTF #else #define debug_ip(...) #endif #if DEBUG_ARP #define debug_arp DPRINTF #else #define debug_arp(...) #endif #if DEBUG_CSLIP #define debug_cslip DPRINTF #else #define debug_cslip(...) #endif #if DEBUG_TCPDEV #define debug_tcpdev DPRINTF #else #define debug_tcpdev(...) #endif #if DEBUG_MEM #define debug_mem DPRINTF #else #define debug_mem(...) #endif #endif
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
master
Visibility
public
Your access
Read
Remote
Configured
File activity
View file history