diff options
| -rw-r--r-- | indra/newview/llappviewer.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/lllogininstance.cpp | 22 | ||||
| -rw-r--r-- | indra/newview/lllogininstance.h | 3 | ||||
| -rw-r--r-- | indra/newview/tests/lllogininstance_test.cpp | 2 | 
4 files changed, 22 insertions, 7 deletions
| diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 7cd4324864..9bab572b68 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -724,7 +724,7 @@ LLAppViewer::LLAppViewer()  	// OK to write stuff to logs now, we've now crash reported if necessary  	// -	LLLoginInstance::instance().setPlatformInfo(gPlatform, getOSInfo().getOSVersionString()); +	LLLoginInstance::instance().setPlatformInfo(gPlatform, getOSInfo().getOSVersionString(), getOSInfo().getOSStringSimple());  }  LLAppViewer::~LLAppViewer() diff --git a/indra/newview/lllogininstance.cpp b/indra/newview/lllogininstance.cpp index 54459342a7..a92fb047ef 100644 --- a/indra/newview/lllogininstance.cpp +++ b/indra/newview/lllogininstance.cpp @@ -94,10 +94,12 @@ LLLoginInstance::LLLoginInstance() :  }  void LLLoginInstance::setPlatformInfo(const std::string platform, -									  const std::string platform_version) +									  const std::string platform_version, +                                      const std::string platform_name)  {  	mPlatform = platform;  	mPlatformVersion = platform_version; +    mPlatformVersionName = platform_name;  }  LLLoginInstance::~LLLoginInstance() @@ -166,7 +168,6 @@ void LLLoginInstance::constructAuthParams(LLPointer<LLCredential> user_credentia  	requested_options.append("event_notifications");  	requested_options.append("classified_categories");  	requested_options.append("adult_compliant");  -	//requested_options.append("inventory-targets");  	requested_options.append("buddy-list");  	requested_options.append("newuser-config");  	requested_options.append("ui-config"); @@ -188,8 +189,7 @@ void LLLoginInstance::constructAuthParams(LLPointer<LLCredential> user_credentia  		requested_options.append("god-connect");  	} -	// (re)initialize the request params with creds. -	LLSD request_params = user_credential->getLoginParams(); +	LLSD request_params;      unsigned char hashed_unique_id_string[MD5HEX_STR_SIZE];      if ( ! llHashedUniqueID(hashed_unique_id_string) ) @@ -209,10 +209,24 @@ void LLLoginInstance::constructAuthParams(LLPointer<LLCredential> user_credentia  	request_params["platform"] = mPlatform;  	request_params["platform_version"] = mPlatformVersion;  	request_params["address_size"] = ADDRESS_SIZE; +	request_params["platform_string"] = mPlatformVersionName;  	request_params["id0"] = mSerialNumber;  	request_params["host_id"] = gSavedSettings.getString("HostID");  	request_params["extended_errors"] = true; // request message_id and message_args +    // log request_params _before_ adding the credentials    +    LL_DEBUGS("LLLogin") << "Login parameters: " << LLSDOStreamer<LLSDNotationFormatter>(request_params) << LL_ENDL; + +    // Copy the credentials into the request after logging the rest +    LLSD credentials(user_credential->getLoginParams()); +    for (LLSD::map_const_iterator it = credentials.beginMap(); +         it != credentials.endMap(); +         it++ +         ) +    { +        request_params[it->first] = it->second; +    } +  	mRequestData.clear();  	mRequestData["method"] = "login_to_simulator";  	mRequestData["params"] = request_params; diff --git a/indra/newview/lllogininstance.h b/indra/newview/lllogininstance.h index f53c02c6e1..651ad10afb 100644 --- a/indra/newview/lllogininstance.h +++ b/indra/newview/lllogininstance.h @@ -62,7 +62,7 @@ public:  	void setSerialNumber(const std::string& sn) { mSerialNumber = sn; }  	void setLastExecEvent(int lee) { mLastExecEvent = lee; }  	void setLastExecDuration(S32 duration) { mLastExecDuration = duration; } -	void setPlatformInfo(const std::string platform, const std::string platform_version); +	void setPlatformInfo(const std::string platform, const std::string platform_version, const std::string platform_name);  	void setNotificationsInterface(LLNotificationsInterface* ni) { mNotifications = ni; }  	LLNotificationsInterface& getNotificationsInterface() const { return *mNotifications; } @@ -96,6 +96,7 @@ private:  	S32 mLastExecDuration;  	std::string mPlatform;  	std::string mPlatformVersion; +	std::string mPlatformVersionName;  	LLEventDispatcher mDispatcher;  }; diff --git a/indra/newview/tests/lllogininstance_test.cpp b/indra/newview/tests/lllogininstance_test.cpp index 85a117a96b..2edad30493 100644 --- a/indra/newview/tests/lllogininstance_test.cpp +++ b/indra/newview/tests/lllogininstance_test.cpp @@ -354,7 +354,7 @@ namespace tut  			accountCredential->setCredentialData(identifier, authenticator);			  			logininstance->setNotificationsInterface(¬ifications); -			logininstance->setPlatformInfo("win", "1.3.5"); +			logininstance->setPlatformInfo("win", "1.3.5", "Windows Bogus Version 100.6.6.6");  		}  		LLLoginInstance* logininstance; | 
