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/Framework | |
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/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index f51bf71..c1333fc 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -983,6 +983,7 @@ namespace OpenSim.Framework | |||
983 | 983 | ||
984 | void SendInstantMessage(GridInstantMessage im); | 984 | void SendInstantMessage(GridInstantMessage im); |
985 | 985 | ||
986 | void SendGenericMessage(string method, List<string> message); | ||
986 | void SendGenericMessage(string method, List<byte[]> message); | 987 | void SendGenericMessage(string method, List<byte[]> message); |
987 | 988 | ||
988 | void SendLayerData(float[] map); | 989 | void SendLayerData(float[] map); |