File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -149,5 +149,13 @@ config OPENTHREAD_IP6_MAX_EXT_MCAST_ADDRS
149149	range 0 32
150150	default 2
151151
152+ config OPENTHREAD_TCP_ENABLE
153+ 	bool "Enable TCP"
154+ 
155+ config OPENTHREAD_CLI_TCP_ENABLE
156+ 	bool "Enable TCP in the CLI tool"
157+ 	default y if SHELL
158+ 	depends on OPENTHREAD_TCP_ENABLE
159+ 
152160config OPENTHREAD_HISTORY_TRACKER
153161	bool "Enable history tracker support"
Original file line number Diff line number Diff line change 401401#define  OPENTHREAD_CONFIG_IP6_MAX_EXT_MCAST_ADDRS  CONFIG_OPENTHREAD_IP6_MAX_EXT_MCAST_ADDRS
402402#endif  /* CONFIG_OPENTHREAD_IP6_MAX_EXT_MCAST_ADDRS */ 
403403
404+ /** 
405+  * @def OPENTHREAD_CONFIG_TCP_ENABLE 
406+  * 
407+  * Enable TCP. 
408+  * 
409+  */ 
410+ #define  OPENTHREAD_CONFIG_TCP_ENABLE  IS_ENABLED(CONFIG_OPENTHREAD_TCP_ENABLE)
411+ 
412+ /** 
413+  * @def OPENTHREAD_CONFIG_CLI_TCP_ENABLE 
414+  * 
415+  * Enable TCP in the CLI tool. 
416+  * 
417+  */ 
418+ #define  OPENTHREAD_CONFIG_CLI_TCP_ENABLE  IS_ENABLED(CONFIG_OPENTHREAD_CLI_TCP_ENABLE)
419+ 
404420#endif   /* OPENTHREAD_CORE_ZEPHYR_CONFIG_H_ */ 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments