aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authorBlueWall2012-10-20 05:25:58 -0400
committerBlueWall2012-10-20 05:25:58 -0400
commit07f1d44174f5e2b4e3d5ffdec3619bb84f357af2 (patch)
tree83cc0442b2c1b89a5b3dd94cff23d5098415777e /bin
parentMerge branch 'master' into connector_plugin (diff)
parentFix: invinite loading for Viewer3 : parcelinfo request of traffic-value (impl... (diff)
downloadopensim-SC_OLD-07f1d44174f5e2b4e3d5ffdec3619bb84f357af2.zip
opensim-SC_OLD-07f1d44174f5e2b4e3d5ffdec3619bb84f357af2.tar.gz
opensim-SC_OLD-07f1d44174f5e2b4e3d5ffdec3619bb84f357af2.tar.bz2
opensim-SC_OLD-07f1d44174f5e2b4e3d5ffdec3619bb84f357af2.tar.xz
Merge branch 'master' into connector_plugin
Diffstat (limited to 'bin')
-rw-r--r--bin/OpenSimDefaults.ini11
-rw-r--r--bin/Robust.HG.ini.example33
-rwxr-xr-xbin/lib32/BulletSim.dllbin582144 -> 598016 bytes
-rwxr-xr-xbin/lib32/libBulletSim.sobin2692621 -> 2772750 bytes
-rwxr-xr-xbin/lib64/BulletSim.dllbin747008 -> 764416 bytes
-rwxr-xr-xbin/lib64/libBulletSim.sobin2950520 -> 3031835 bytes
6 files changed, 42 insertions, 2 deletions
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini
index 2fca6ce..dffc0ac 100644
--- a/bin/OpenSimDefaults.ini
+++ b/bin/OpenSimDefaults.ini
@@ -1577,6 +1577,11 @@
1577 MessagingModule = GroupsMessagingModule 1577 MessagingModule = GroupsMessagingModule
1578 ;MessagingEnabled = true 1578 ;MessagingEnabled = true
1579 1579
1580 ; Experimental option to only message cached online users rather than all users
1581 ; Should make large group with few online members messaging faster, as the expense of more calls to ROBUST presence service
1582 ; This currently only applies to the Flotsam XmlRpc backend
1583 MessageOnlineUsersOnly = false
1584
1580 ; Service connectors to the Groups Service. Select one depending on whether you're using a Flotsam XmlRpc backend or a SimianGrid backend 1585 ; Service connectors to the Groups Service. Select one depending on whether you're using a Flotsam XmlRpc backend or a SimianGrid backend
1581 1586
1582 ; SimianGrid Service for Groups 1587 ; SimianGrid Service for Groups
@@ -1602,10 +1607,14 @@
1602 1607
1603 1608
1604[PacketPool] 1609[PacketPool]
1605 ; Enables the experimental packet pool. Yes, we've been here before.
1606 ;RecyclePackets = true; 1610 ;RecyclePackets = true;
1607 ;RecycleDataBlocks = true; 1611 ;RecycleDataBlocks = true;
1608 1612
1613 ; If true, then the basic packet objects used to receive data are also recycled, not just the LLUDP packets.
1614 ; This reduces data churn
1615 ; This setting is currently experimental and defaults to false.
1616 RecycleBaseUDPPackets = false;
1617
1609 1618
1610[InterestManagement] 1619[InterestManagement]
1611 ; This section controls how state updates are prioritized for each client 1620 ; This section controls how state updates are prioritized for each client
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
index 107a42d..e8d6846 100644
--- a/bin/Robust.HG.ini.example
+++ b/bin/Robust.HG.ini.example
@@ -21,7 +21,38 @@
21; * [[<ConfigName>@]<port>/]<dll name>[:<class name>] 21; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
22; * 22; *
23[Startup] 23[Startup]
24ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:XInventoryInConnector,8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector,8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector,8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector,8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector,8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector,HGInventoryService@8002/OpenSim.Server.Handlers.dll:XInventoryInConnector,HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector,8002/OpenSim.Server.Handlers.dll:HeloServiceInConnector,8002/OpenSim.Server.Handlers.dll:HGFriendsServerConnector,8002/OpenSim.Server.Handlers.dll:InstantMessageServerConnector,8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector,8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector" 24
25[ServiceList]
26
27AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector"
28InventoryInConnector = "8003/OpenSim.Server.Handlers.dll:XInventoryInConnector"
29VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
30GridServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridServiceConnector"
31GridInfoServerInConnector = "8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
32AuthenticationServiceConnector = "8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
33OpenIdServerConnector = "8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
34AvatarServiceConnector = "8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
35LLLoginServiceInConnector = "8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
36PresenceServiceConnector = "8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
37UserAccountServiceConnector = "8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
38GridUserServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
39FriendsServiceConnector = "8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
40MapAddServiceConnector = "8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
41MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
42
43;; Additions for Hypergrid
44
45GatekeeperServiceInConnector = "8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector"
46UserAgentServerConnector = "8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector"
47HeloServiceInConnector = "8002/OpenSim.Server.Handlers.dll:HeloServiceInConnector"
48HGFriendsServerConnector = "8002/OpenSim.Server.Handlers.dll:HGFriendsServerConnector"
49InstantMessageServerConnector = "8002/OpenSim.Server.Handlers.dll:InstantMessageServerConnector"
50HGInventoryServiceConnector = "HGInventoryService@8002/OpenSim.Server.Handlers.dll:XInventoryInConnector"
51HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector"
52
53;; Additions for other add-on modules. For example:
54;; WifiServerConnector = "8002/Diva.Wifi.dll:WifiServerConnector"
55
25 56
26; Plugin Registry Location 57; Plugin Registry Location
27; Set path to directory for plugin registry. Information 58; Set path to directory for plugin registry. Information
diff --git a/bin/lib32/BulletSim.dll b/bin/lib32/BulletSim.dll
index 1fd0a60..f976efe 100755
--- a/bin/lib32/BulletSim.dll
+++ b/bin/lib32/BulletSim.dll
Binary files differ
diff --git a/bin/lib32/libBulletSim.so b/bin/lib32/libBulletSim.so
index 3b42048..a00bc3a 100755
--- a/bin/lib32/libBulletSim.so
+++ b/bin/lib32/libBulletSim.so
Binary files differ
diff --git a/bin/lib64/BulletSim.dll b/bin/lib64/BulletSim.dll
index bfaabde..acaa9c8 100755
--- a/bin/lib64/BulletSim.dll
+++ b/bin/lib64/BulletSim.dll
Binary files differ
diff --git a/bin/lib64/libBulletSim.so b/bin/lib64/libBulletSim.so
index 54ddad9..996ea21 100755
--- a/bin/lib64/libBulletSim.so
+++ b/bin/lib64/libBulletSim.so
Binary files differ