diff options
Diffstat (limited to 'indra/llmessage')
| -rw-r--r-- | indra/llmessage/lldbstrings.h | 12 | ||||
| -rw-r--r-- | indra/llmessage/llinstantmessage.cpp | 17 | ||||
| -rw-r--r-- | indra/llmessage/llinstantmessage.h | 51 | 
3 files changed, 1 insertions, 79 deletions
| diff --git a/indra/llmessage/lldbstrings.h b/indra/llmessage/lldbstrings.h index 9bf1b3eda4..e23d17d5b6 100644 --- a/indra/llmessage/lldbstrings.h +++ b/indra/llmessage/lldbstrings.h @@ -156,18 +156,6 @@ const S32 DB_USER_SKILLS_BUF_SIZE		= 255;  const S32 DB_NV_NAME_STR_LEN			= 128;  const S32 DB_NV_NAME_BUF_SIZE			= 129; -// votes.vote_text						varchar(254) -const S32 DB_VOTE_TEXT_STR_LEN			= 254; -const S32 DB_VOTE_TEXT_BUF_SIZE			= 255; - -// vpte type text						varchar(9) -const S32 DB_VOTE_TYPE_STR_LEN			= 9; -const S32 DB_VOTE_TYPE_BUF_SIZE			= 10; - -// vote result text -const S32 DB_VOTE_RESULT_BUF_LEN		= 8; -const S32 DB_VOTE_RESULT_BUF_SIZE		= 9; -  // user_start_location.location_name	varchar(254)  const S32 DB_START_LOCATION_STR_LEN		= 254;  const S32 DB_START_LOCATION_BUF_SIZE	= 255; diff --git a/indra/llmessage/llinstantmessage.cpp b/indra/llmessage/llinstantmessage.cpp index d68e0c423e..b0275c161b 100644 --- a/indra/llmessage/llinstantmessage.cpp +++ b/indra/llmessage/llinstantmessage.cpp @@ -43,14 +43,6 @@  const U8 IM_ONLINE = 0;  const U8 IM_OFFLINE = 1; -const S32 VOTE_YES = 1; -const S32 VOTE_NO = 0; -const S32 VOTE_ABSTAIN = -1; - -const S32 VOTE_MAJORITY = 0; -const S32 VOTE_SUPER_MAJORITY = 1; -const S32 VOTE_UNANIMOUS = 2; -  const char EMPTY_BINARY_BUCKET[] = "";  const S32 EMPTY_BINARY_BUCKET_SIZE = 1;  const U32 NO_TIMESTAMP = 0; @@ -69,7 +61,6 @@ LLIMInfo::LLIMInfo() :  	mViewerThinksToIsOnline(false),  	mIMType(IM_NOTHING_SPECIAL),  	mTimeStamp(0), -	mSource(IM_FROM_SIM),  	mTTL(IM_TTL)  {  } @@ -88,7 +79,6 @@ LLIMInfo::LLIMInfo(  	LLSD data,  	U8 offline,  	U32 timestamp, -	EIMSource source,  	S32 ttl) :  	mFromID(from_id),  	mFromGroup(from_group), @@ -104,14 +94,12 @@ LLIMInfo::LLIMInfo(  	mName(name),  	mMessage(message),  	mData(data), -	mSource(source),  	mTTL(ttl)  {  } -LLIMInfo::LLIMInfo(LLMessageSystem* msg, EIMSource source, S32 ttl) : +LLIMInfo::LLIMInfo(LLMessageSystem* msg, S32 ttl) :  	mViewerThinksToIsOnline(false), -	mSource(source),  	mTTL(ttl)  {  	unpackMessageBlock(msg); @@ -326,7 +314,6 @@ LLSD im_info_to_llsd(LLPointer<LLIMInfo> im_info)  	param_message["region_id"] = im_info->mRegionID;  	param_message["position"] = ll_sd_from_vector3(im_info->mPosition);  	param_message["data"] = im_info->mData; -	param_message["source"]= im_info->mSource;  	param_message["ttl"] = im_info->mTTL;  	LLSD param_agent; @@ -359,7 +346,6 @@ LLPointer<LLIMInfo> llsd_to_im_info(const LLSD& im_info_sd)  		param_message["data"],  		(U8) param_message["offline"].asInteger(),  		(U32) param_message["timestamp"].asInteger(), -		(EIMSource)param_message["source"].asInteger(),  		param_message["ttl"].asInteger());  	return im_info; @@ -381,7 +367,6 @@ LLPointer<LLIMInfo> LLIMInfo::clone()  			mData,  			mOffline,  			mTimeStamp, -			mSource,  			mTTL);  } diff --git a/indra/llmessage/llinstantmessage.h b/indra/llmessage/llinstantmessage.h index e0dae376b4..12e4e79475 100644 --- a/indra/llmessage/llinstantmessage.h +++ b/indra/llmessage/llinstantmessage.h @@ -164,57 +164,9 @@ enum EInstantMessage  }; -// Hooks for quickly hacking in experimental admin debug messages  -// without needing to recompile the viewer -// *NOTE: This functionality has been moved to be a string based -// operation so that we don't even have to do a full recompile. This -// enumeration will be phased out soon. -enum EGodlikeRequest -{ -	GOD_WANTS_NOTHING, - -	// for requesting physics information about an object -	GOD_WANTS_PHYSICS_INFO, -	 -	// two unused requests that can be appropriated for debug  -	// purposes (no viewer recompile necessary) -	GOD_WANTS_FOO, -	GOD_WANTS_BAR, - -	// to dump simulator terrain data to terrain.raw file -	GOD_WANTS_TERRAIN_SAVE, -	// to load simulator terrain data from terrain.raw file -	GOD_WANTS_TERRAIN_LOAD, - -	GOD_WANTS_TOGGLE_AVATAR_GEOMETRY,	// HACK for testing new avatar geom - -	// real-time telehub operations -	GOD_WANTS_TELEHUB_INFO, -	GOD_WANTS_CONNECT_TELEHUB, -	GOD_WANTS_DELETE_TELEHUB, -	GOD_WANTS_ADD_TELEHUB_SPAWNPOINT, -	GOD_WANTS_REMOVE_TELEHUB_SPAWNPOINT, - -}; - -enum EIMSource -{ -	IM_FROM_VIEWER, -	IM_FROM_DATASERVER, -	IM_FROM_SIM -}; -  extern const U8 IM_ONLINE;  extern const U8 IM_OFFLINE; -extern const S32 VOTE_YES; -extern const S32 VOTE_NO; -extern const S32 VOTE_ABSTAIN; - -extern const S32 VOTE_MAJORITY; -extern const S32 VOTE_SUPER_MAJORITY; -extern const S32 VOTE_UNANIMOUS; -  extern const char EMPTY_BINARY_BUCKET[];  extern const S32 EMPTY_BINARY_BUCKET_SIZE; @@ -234,7 +186,6 @@ protected:  public:  	LLIMInfo(LLMessageSystem* msg,  -			EIMSource source = IM_FROM_SIM,   			S32 ttl = IM_TTL);  	LLIMInfo( @@ -251,7 +202,6 @@ public:  		LLSD data,  		U8 offline,  		U32 timestamp, -		EIMSource source,  		S32 ttl = IM_TTL);  	void packInstantMessage(LLMessageSystem* msg) const; @@ -274,7 +224,6 @@ public:  	std::string mMessage;  	LLSD mData; -	EIMSource mSource;  	S32 mTTL;  }; | 
