diff options
author | Mikko Pallari | 2010-04-15 08:23:51 +0300 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-05-21 23:08:07 +0100 |
commit | 4e45718833f72b9149aed6d503e967b8916e5d08 (patch) | |
tree | b82874cf9b54220308aabaf177adbd5b2f99ee9a /OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | |
parent | Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-4e45718833f72b9149aed6d503e967b8916e5d08.zip opensim-SC_OLD-4e45718833f72b9149aed6d503e967b8916e5d08.tar.gz opensim-SC_OLD-4e45718833f72b9149aed6d503e967b8916e5d08.tar.bz2 opensim-SC_OLD-4e45718833f72b9149aed6d503e967b8916e5d08.tar.xz |
Added overload of SendGenericMessage to LLClientView with string list as parameter. Now modules themselfs don't necessarily need to convert strings to byte arrays. Added this as it was removed in LightShare patch.
Diffstat (limited to 'OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs')
-rw-r--r-- | OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs index c293480..d725943 100644 --- a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs +++ b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | |||
@@ -504,6 +504,10 @@ namespace OpenSim.Client.Sirikata.ClientStack | |||
504 | throw new System.NotImplementedException(); | 504 | throw new System.NotImplementedException(); |
505 | } | 505 | } |
506 | 506 | ||
507 | public void SendGenericMessage(string method, List<string> message) | ||
508 | { | ||
509 | } | ||
510 | |||
507 | public void SendGenericMessage(string method, List<byte[]> message) | 511 | public void SendGenericMessage(string method, List<byte[]> message) |
508 | { | 512 | { |
509 | throw new System.NotImplementedException(); | 513 | throw new System.NotImplementedException(); |