diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/lluserauth.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/lluserauth.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/linden/indra/newview/lluserauth.h b/linden/indra/newview/lluserauth.h index b59c3f3..14321b7 100644 --- a/linden/indra/newview/lluserauth.h +++ b/linden/indra/newview/lluserauth.h | |||
@@ -95,12 +95,12 @@ public: | |||
95 | 95 | ||
96 | // viewer auth version | 96 | // viewer auth version |
97 | void authenticate( | 97 | void authenticate( |
98 | const char* auth_uri, | 98 | const std::string& auth_uri, |
99 | const char* auth_method, | 99 | const std::string& auth_method, |
100 | const char* firstname, | 100 | const std::string& firstname, |
101 | const char* lastname, | 101 | const std::string& lastname, |
102 | LLUUID web_login_key, | 102 | LLUUID web_login_key, |
103 | const char* start, | 103 | const std::string& start, |
104 | BOOL skip_optional_update, | 104 | BOOL skip_optional_update, |
105 | BOOL accept_tos, | 105 | BOOL accept_tos, |
106 | BOOL accept_critical_message, | 106 | BOOL accept_critical_message, |
@@ -111,12 +111,12 @@ public: | |||
111 | 111 | ||
112 | // legacy version | 112 | // legacy version |
113 | void authenticate( | 113 | void authenticate( |
114 | const char* auth_uri, | 114 | const std::string& auth_uri, |
115 | const char* auth_method, | 115 | const std::string& auth_method, |
116 | const char* firstname, | 116 | const std::string& firstname, |
117 | const char* lastname, | 117 | const std::string& lastname, |
118 | const char* password, | 118 | const std::string& password, |
119 | const char* start, | 119 | const std::string& start, |
120 | BOOL skip_optional_update, | 120 | BOOL skip_optional_update, |
121 | BOOL accept_tos, | 121 | BOOL accept_tos, |
122 | BOOL accept_critical_message, | 122 | BOOL accept_critical_message, |
@@ -134,8 +134,8 @@ public: | |||
134 | 134 | ||
135 | // function to get a direct reponse from the login api by | 135 | // function to get a direct reponse from the login api by |
136 | // name. returns NULL if the named response was not found. | 136 | // name. returns NULL if the named response was not found. |
137 | const char* getResponse(const char* name) const; | 137 | const std::string& getResponse(const std::string& name) const; |
138 | BOOL getOptions(const char* name, options_t& options) const; | 138 | BOOL getOptions(const std::string& name, options_t& options) const; |
139 | 139 | ||
140 | F64 getLastTransferRateBPS() const { return mLastTransferRateBPS; } | 140 | F64 getLastTransferRateBPS() const { return mLastTransferRateBPS; } |
141 | 141 | ||