Changed default values for bandwidth.
authorfatbob313 <martin@fatbob.nu>
Wed, 6 Jan 2010 23:51:53 +0000 (23:51 +0000)
committerfatbob313 <martin@fatbob.nu>
Wed, 6 Jan 2010 23:51:53 +0000 (23:51 +0000)
openwrt/files/umurmur.conf
src/conf.c

index 09161fa0b85300982ade940623125b6c2ee92f28..47c0dea0d9e76eb842fc0e495a7142030faacf0e 100644 (file)
@@ -1,4 +1,4 @@
-max_bandwidth = 5000;
+max_bandwidth = 48000;
 welcometext = "Welcome to uMurmur!";
 certificate = "/etc/umurmur/cert.crt";
 private_key = "/etc/umurmur/key.key";
@@ -28,4 +28,15 @@ channels = ( {
         description = "The Blue team channel";
         }
 );
+# Channel links configuration.
+channel_links = ( {
+        source = "Lobby";
+        destination = "Red team";
+        },
+        {
+        source = "Lobby";
+        destination = "Blue team";
+        }
+);
+
 default_channel = "Lobby";
index 4d9a0e695a3abb20bb01ff84d0eddd3352830444..3068cd7f1785e2e46759130fe524a35bcbab8b03 100644 (file)
@@ -47,7 +47,7 @@ static config_t configuration;
 #define DEFAULT_CONFIG "/etc/umurmur.conf"
 #define DEFAULT_WELCOME "Welcome to uMurmur!"
 #define DEFAULT_MAX_CLIENTS 10
-#define DEFAULT_MAX_BANDWIDTH 5000
+#define DEFAULT_MAX_BANDWIDTH 48000
 #define DEFAULT_BINDPORT 64738
 
 const char defaultconfig[] = DEFAULT_CONFIG;