File: new_server.sql

package info (click to toggle)
teamspeak-server 2.0.24.1%2Bdebian-1
  • links: PTS
  • area: non-free
  • in suites: lenny
  • size: 3,076 kB
  • ctags: 215
  • sloc: sql: 927; sh: 232; makefile: 45
file content (52 lines) | stat: -rw-r--r-- 876 bytes parent folder | download | duplicates (2)
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
INSERT INTO ts2_servers (
  s_server_name,
  s_server_welcomemessage,
  i_server_maxusers,
  i_server_udpport,
  s_server_password,
  b_server_clan_server,
  b_server_allow_codec_celp51,
  b_server_allow_codec_celp63,
  b_server_allow_codec_gsm148,
  b_server_allow_codec_gsm164,
  b_server_allow_codec_celp52,
  b_server_allow_codec_speex2150,
  b_server_allow_codec_speex3950,
  b_server_allow_codec_speex5950,
  b_server_allow_codec_speex8000,
  b_server_allow_codec_speex11000,
  b_server_allow_codec_speex15000,
  b_server_allow_codec_speex18200,
  b_server_allow_codec_speex24600,
  s_server_webposturl,
  s_server_weblinkurl,
  b_server_active,
  dt_server_created,
  s_server_description
)
values (
  '',
  '',
  0,
  :iServerPort,
  '',
  -1,
  -1,
  -1,
  -1,
  -1,
  -1,
  -1,
  -1,
  -1,
  -1,
  -1,
  -1,
  -1,
  -1,
  '',
  '',
  -1,
  :dtServerCreated,
  ''
) ;