github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/docs/configuration/inbound/naive.md (about)

     1  ### Structure
     2  
     3  ```json
     4  {
     5    "type": "naive",
     6    "tag": "naive-in",
     7    "network": "udp",
     8  
     9    ... // Listen Fields
    10  
    11    "users": [
    12      {
    13        "username": "sekai",
    14        "password": "password"
    15      }
    16    ],
    17    "tls": {}
    18  }
    19  ```
    20  
    21  !!! warning ""
    22  
    23      HTTP3 transport is not included by default, see [Installation](/#installation).
    24  
    25  ### Listen Fields
    26  
    27  See [Listen Fields](/configuration/shared/listen) for details.
    28  
    29  ### Fields
    30  
    31  #### network
    32  
    33  Listen network, one of `tcp` `udp`.
    34  
    35  Both if empty.
    36  
    37  #### users
    38  
    39  ==Required==
    40  
    41  Naive users.
    42  
    43  #### tls
    44  
    45  TLS configuration, see [TLS](/configuration/shared/tls/#inbound).