* ProtocolManager.cs now generates the keyword ordering from message_template.msg by hashing the keywords. This should remove the need for keywords.txt.

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@427 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
lancej
2006-10-29 20:22:54 +00:00
parent 56e4836458
commit a303308532
7 changed files with 77 additions and 93 deletions

View File

@@ -39,7 +39,7 @@ class Decoder {
private static int BUFSIZE = 8096;
private static SecondLife client = new SecondLife();
private static ProtocolManager protocol = new ProtocolManager("keywords.txt", "message_template.msg", client);
private static ProtocolManager protocol = new ProtocolManager("message_template.msg", client);
private static string grep = null;
private static byte[] data = new byte[BUFSIZE];
private static byte[] temp = new byte[BUFSIZE];