]> begriffs open source - cmsis-driver-validation/blob - Tools/SockServer/Board/MCB4300/RTE/Network/Net_Config_Telnet_Server.h
- Minor spelling corrections in Abstract.txt file of example for STMicroelectronics...
[cmsis-driver-validation] / Tools / SockServer / Board / MCB4300 / RTE / Network / Net_Config_Telnet_Server.h
1 /*------------------------------------------------------------------------------
2  * MDK Middleware - Component ::Network:Service
3  * Copyright (c) 2004-2019 Arm Limited (or its affiliates). All rights reserved.
4  *------------------------------------------------------------------------------
5  * Name:    Net_Config_Telnet_Server.h
6  * Purpose: Network Configuration for Telnet Server
7  * Rev.:    V7.0.0
8  *----------------------------------------------------------------------------*/
9
10 //-------- <<< Use Configuration Wizard in Context Menu >>> --------------------
11
12 // <h>Telnet Server
13 #define TELNET_SERVER_ENABLE        1
14
15 //   <o>Number of Connections <1-10>
16 //   <i>Number of simultaneously active Telnet Connections.
17 //   <i>Default: 1
18 #define TELNET_SERVER_NUM_SESSISONS 1
19
20 //   <o>Port Number <1-65535>
21 //   <i>Listening port number.
22 //   <i>Default: 23
23 #define TELNET_SERVER_PORT_NUM      23
24
25 //   <o>Idle Connection Timeout in seconds <0-3600>
26 //   <i>When timeout expires, the connection is closed.
27 //   <i>A value of 0 disables disconnection on timeout.
28 //   <i>Default: 120
29 #define TELNET_SERVER_TOUT          120
30
31 //   <q>Disable Echo
32 //   <i>When disabled, the server will not echo characters it receives.
33 //   <i>Default: Not disabled
34 #define TELNET_SERVER_NO_ECHO       0
35
36 //   <e>Enable User Authentication
37 //   <i>When enabled, requires authentication of the user through
38 //   <i>the credentials to access the server.
39 #define TELNET_SERVER_AUTH_ENABLE   0
40
41 //     <e>Built-in Administrator Account
42 //     <i>Enable the built-in Administrator account on the server
43 //     <i>Default: Enabled
44 #define TELNET_SERVER_AUTH_ADMIN    1
45
46 //       <s.15>Administrator Username
47 //       <i>Default: "admin"
48 #define TELNET_SERVER_AUTH_USER     "admin"
49
50 //       <s.15>Administrator Password
51 //       <i>Default: ""
52 #define TELNET_SERVER_AUTH_PASS     ""
53 //     </e>
54 //   </e>
55
56 // </h>
57
58 //------------- <<< end of configuration section >>> ---------------------------