blob: 218756f7b2ee047e9828a69480b162bf6919c445 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#*******************************************
# TeamSpeak daemon
# (c)2005 clan-server.at
#*******************************************
#-------------------------------------------
# TeamSpeak client scecific settings
#-------------------------------------------
# TeamSpeak client Platform description
TSPlatform = Windows XP
# TeamSpeak client version number (e.g. "2.0.32.60")
TSVersionNumber = 2.0.32.60
# TeamSpeak player login name
# If string is empty, login as anonymous.
TSLoginName = username
# TeamSpeak player password
TSLoginPassword = password
# TeamSpeak player nickname
TSNickname = tsdaemon
# TeamSpeak server IP address or URL
TSServerAddress = localhost
# TeamSpeak server port
TSPort = 8767
#-------------------------------------------
# TeamSpeak daemon scecific settings
#-------------------------------------------
#Daemon logfile
#if string is empty, no logfile.
LogFile = tsclient.log
# Daemon host address, can be IP or URL
# If string is empty or 0.0.0.0, bind to any interfaces.
ServerAddress = 0.0.0.0
# Daemon allowed IP-Addresses
# Separate with ','
AllowedAddresses = 127.0.0.1
# Daemon listening port
Port = 54321
# Daemon password
Password = daemon_password
|