* Implemented the first real unit test that utilizes the SL grid and our unit testing bot to check for u64 endian issues

* Added new methods to NetworkManager to login with an md5 hash instead of a password

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@541 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2006-11-08 22:58:50 +00:00
parent a00b7debcc
commit 134193e26d
6 changed files with 86 additions and 193 deletions

View File

@@ -50,13 +50,8 @@ namespace AnimationSample
private void btnLogin_Click(object sender, EventArgs e)
{
//Login information
Dictionary<string, object> loginParams = NetworkManager.DefaultLoginValues(txtFirst.Text, txtLast.Text, txtPassword.Text, "00:00:00:00:00:00",
"last", 1, 12, 12, 12, "Win", "0", "animationsample", "jessemalthus@gmail.com");
Hashtable loginReply = new Hashtable();
// Login
if (!client.Network.Login(loginParams))
if (!client.Network.Login(txtFirst.Text, txtLast.Text, txtPassword.Text, "animationsample", "jessemalthus@gmail.com"))
{
// Login failed
MessageBox.Show("We're sorry, but login failed. Error: \n " + client.Network.LoginError);