aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Avatar/Voice (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into careminsterMelanie2012-11-151-0/+2
|\
| * All optional modules' directives moved out of addin.xmlDiva Canto2012-11-131-0/+2
| |
| * Revert "Added request.Proxy=null everywhere, as discussed in ↵Diva Canto2012-09-302-2/+0
| | | | | | | | | | | | | | | | http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow." But the patch is here, in case anyone wants to try it. This reverts commit 531edd51d82ecd6a842a2611c99e9919634491ef.
| * Added request.Proxy=null everywhere, as discussed in ↵Diva Canto2012-09-302-0/+2
| | | | | | | | | | | | http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow. Thanks R.Gunther (rigun@rigutech.nl) https://lists.berlios.de/pipermail/opensim-users/2012-September/010986.html
* | Merge branch 'master' into careminsterMelanie2012-09-092-2/+2
|\ \ | |/ | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/Scene.cs
| * refactoring to allow Scene.GetLandData to accept Vector3 as an argument. ↵SignpostMarv2012-09-082-2/+2
| | | | | | | | Note that the prior work on LSL_Vector implicit operators means one does not need to explicitly cast a LSL_Vector to Vector3
* | Remove XML debug spam from vivox voiceMelanie2012-08-161-12/+12
| |
* | Merge branch 'master' into careminsterMelanie2012-07-121-2/+1
|\ \ | |/ | | | | | | | | | | | | Conflicts: OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs OpenSim/Region/Framework/Scenes/SceneObjectPart.cs OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs
| * Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵Justin Clark-Casey (justincc)2012-07-111-2/+1
| | | | | | | | | | | | | | constructing fresh copies. The encodings are thread-safe and already used in such a manner in other places. This isn't done where Byte Order Mark output is suppressed, since Encoding.UTF8 is constructed to output the BOM.
* | Merge branch 'master' into careminsterMelanie2012-05-052-48/+59
|\ \ | |/ | | | | | | | | | | | | | | Conflicts: OpenSim/Framework/WebUtil.cs OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs OpenSim/Region/Framework/Scenes/ScenePresence.cs
| * Implement optional name and description on http stream handlers so that we ↵Justin Clark-Casey (justincc)2012-05-032-48/+59
| | | | | | | | | | | | can relate a slow request to what the handler actually does and the agent it serves, if applicable. This is most useful for capabilities where the url is not self-describing.
* | Merge branch 'master' into careminsterMelanie2012-03-281-46/+24
|\ \ | |/ | | | | | | | | | | Conflicts: OpenSim/Framework/Client/IClientInventory.cs OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs OpenSim/Region/OptionalModules/Avatar/Voice/VivoxVoice/VivoxVoiceModule.cs
| * minor: clean up some code formatting in VivoxVoiceModule.csJustin Clark-Casey (justincc)2012-03-271-54/+25
| |
* | Merge branch 'master' into careminsterMelanie2012-02-151-3/+3
|\ \ | |/
| * Fix: get embedded objects from Notecard fails with activated ↵PixelTomsen2012-02-141-3/+3
| | | | | | | | | | | | FreeSwitchVoiceModul http://opensimulator.org/mantis/view.php?id=2607
* | Merge branch 'master' into bigmergeMelanie2011-12-052-6/+6
|\ \ | |/
| * Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)2011-12-052-6/+6
| | | | | | | | | | | | | | | | of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
* | Merge branch 'master' into careminster-presence-refactorroot2011-06-301-3/+3
|\ \ | |/
| * Tell hypergridders when their teleports fail because of the 4096 limit ↵Justin Clark-Casey (justincc)2011-06-241-4/+4
| | | | | | | | | | | | | | | | | | | | | | rather than just saying "destination not found" Instead of performing the 4096 check when the region is linked (and subsequently removing the link), leave the link in place and perform the check in the entity transfer module This allows us to explicitly tell the hypergridder why the teleport failed (region out of range). It also allows people on regions that are within range (on a large source grid) to teleport. The Check4096 config parameter in the [GridService] section is replaced by a max_distance paramter in a new [EntityTransfer] section in OpenSimDefaults.ini Since the parameter is in OpenSimDefaults.ini no action needs to be taken unless you want to increase this limit. It could also be decreased. The check is being made in the base entity transfer module, since I believe the viewer problem occurs both on extremely large grids and while hypergridding.
* | Merge branch 'master' into careminster-presence-refactorMelanie2011-04-211-9/+18
|\ \ | |/
| * Adjust freeswitch logging to be somewhat less noisy. However, there is ↵Justin Clark-Casey (justincc)2011-04-211-9/+18
| | | | | | | | still quite a large amount of logging present for debug purposes.
* | Merge branch 'master' into careminster-presence-refactorMelanie2011-04-211-22/+77
|\ \ | |/
| * Get Viewer 2 voice working with OpenSim.Justin Clark-Casey (justincc)2011-04-201-13/+66
| | | | | | | | | | | | | | | | See http://opensimulator.org/mantis/view.php?id=5336 It turns out that viewer 2 was upset by the lack of a response to viv_watcher.php. This would send it into a continuous login loop. Viewer 1 was quite happy to ignore the lack of response. This commit puts in the bare minimum 'OK' message in response to viv_watcher.php. This allows viewer 2 voice to connect and appears to work. However, at some point we need to fill out the watcher response, whatever that is.
| * Clean up freeswitch config to what is currently required. Add explanation ↵Justin Clark-Casey (justincc)2011-04-191-13/+15
| | | | | | | | to config parameters. Clean up some log messages.
* | Merge branch 'master' into careminster-presence-refactorMelanie2011-04-032-14/+0
|\ \ | |/
| * Comment out some startup logging lines to make up for the one I added ↵Justin Clark-Casey (justincc)2011-04-022-14/+0
| | | | | | | | | | | | earlier on. Most of these are where the region modules are telling us they are disabled. Convention is only to log when enabled (even that is really noisy)
* | Switching vivox to https for production useMelanie2011-03-251-11/+11
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2011-03-101-7/+7
|\ \ | |/
| * minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-03-051-6/+6
| |
| * Fix the build breakMelanie2010-11-291-3/+3
| |
| * Remove the most spammy XML dumps from the FS voice moduleMelanie2010-11-281-6/+6
| |
| * Fox case on a methodMelanie2010-11-221-3/+3
| |
* | Remove some spam from FreeSwitchModuleMelanie2010-12-161-2/+2
| |
* | Fix the build breakMelanie2010-11-291-3/+3
| |
* | Remove the most spammy XML dumps from the FS voice moduleMelanie2010-11-281-6/+6
| |
* | Fox case on a methodMelanie2010-11-221-3/+3
|/
* Change FS Voice module to a shared module to avoid gratuitious server handlerMelanie2010-11-221-6/+30
| | | | | registrations. Add the missing bits to drive the local connector's HTTP requests. This makes standalones work.
* Fox the buglets in Freeswitch. Grid mode works now and there is no reason ↵Melanie2010-11-221-0/+1
| | | | why standalone should not.
* Finish the standalone mode freeswitch work and add config examplesMelanie2010-11-211-43/+47
|
* Convert the Freeswitch module to new styleMelanie2010-11-211-93/+98
|
* Strip the dialplan and directory methods from the region moduleMelanie2010-11-213-522/+10
|
* Merge branch 'master' into presence-refactorMelanie2010-02-221-69/+54
|\ | | | | | | This brings presence-refactor up to master again
| * Formatting cleanup.Jeff Ames2010-02-201-69/+54
| |
| * Revert "Updates all IRegionModules to the new style region modules."Melanie2010-01-291-52/+20
| | | | | | | | This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
| * Updates all IRegionModules to the new style region modules.Revolution2010-01-231-20/+52
| | | | | | | | Signed-off-by: Melanie <melanie@t-data.com>
* | OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2010-01-112-2/+2
|/
* Merge branch 'diva-textures-osgrid'Melanie2009-10-041-2/+2
|\
| * * Creates Util.UTF8 and switches some references of Encoding.UTF8 to ↵John Hurliman2009-10-021-2/+2
| | | | | | | | | | | | Util.UTF8 (not all references were switched since not all OpenSim libraries reference OpenSim.Framework) * Shrinks the largest in-memory object, the LLRAW.HeightmapLookupValue struct (only used for exporting to LLRAW terrain files), to the minimum possible size. This seems to have the odd side effect of cutting the size of the two double[256,256] terrain objects in half. Possibly an alignment optimization?
* | Formatting cleanup.Jeff Ames2009-10-011-1/+1
| |
* | Formatting cleanup.Jeff Ames2009-10-013-13/+13
| |