settings.bas
来自「Winsock的多客户服务器源代码,比较好的WINSOCK应用示例!」· BAS 代码 · 共 18 行
BAS
18 行
Attribute VB_Name = "settings"
'maximum ammount of clients
'the maximum clients the server will handle
Public Const server_max_clients = 200
'the default maximum number of clients
Public Const default_max_clients = 20
Public max_clients As Integer
'port for clients to connect to
Public Const default_server_port = "6000"
Public server_port As Long
Public live_connections As Integer
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?