aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llqueryflags.h
diff options
context:
space:
mode:
authorJacek Antonelli2009-04-30 13:04:20 -0500
committerJacek Antonelli2009-04-30 13:07:16 -0500
commitca8149ca6d157eb4b5fc8ba0e5ba3a6e56f72e7e (patch)
tree8348301d0ac44a524f1819b777686bf086907d76 /linden/indra/llmessage/llqueryflags.h
parentSecond Life viewer sources 1.22.11 (diff)
downloadmeta-impy-ca8149ca6d157eb4b5fc8ba0e5ba3a6e56f72e7e.zip
meta-impy-ca8149ca6d157eb4b5fc8ba0e5ba3a6e56f72e7e.tar.gz
meta-impy-ca8149ca6d157eb4b5fc8ba0e5ba3a6e56f72e7e.tar.bz2
meta-impy-ca8149ca6d157eb4b5fc8ba0e5ba3a6e56f72e7e.tar.xz
Second Life viewer sources 1.23.0-RC
Diffstat (limited to 'linden/indra/llmessage/llqueryflags.h')
-rw-r--r--linden/indra/llmessage/llqueryflags.h35
1 files changed, 34 insertions, 1 deletions
diff --git a/linden/indra/llmessage/llqueryflags.h b/linden/indra/llmessage/llqueryflags.h
index b4f7373..960d777 100644
--- a/linden/indra/llmessage/llqueryflags.h
+++ b/linden/indra/llmessage/llqueryflags.h
@@ -17,7 +17,8 @@
17 * There are special exceptions to the terms and conditions of the GPL as 17 * There are special exceptions to the terms and conditions of the GPL as
18 * it is applied to this Source Code. View the full text of the exception 18 * it is applied to this Source Code. View the full text of the exception
19 * in the file doc/FLOSS-exception.txt in this software distribution, or 19 * in the file doc/FLOSS-exception.txt in this software distribution, or
20 * online at http://secondlifegrid.net/programs/open_source/licensing/flossexception 20 * online at
21 * http://secondlifegrid.net/programs/open_source/licensing/flossexception
21 * 22 *
22 * By copying, modifying or distributing this software, you acknowledge 23 * By copying, modifying or distributing this software, you acknowledge
23 * that you have read and understood your obligations described above, 24 * that you have read and understood your obligations described above,
@@ -64,6 +65,13 @@ const U32 DFQ_LIMIT_BY_AREA = 0x1 << 21;
64const U32 DFQ_FILTER_MATURE = 0x1 << 22; 65const U32 DFQ_FILTER_MATURE = 0x1 << 22;
65const U32 DFQ_PG_PARCELS_ONLY = 0x1 << 23; 66const U32 DFQ_PG_PARCELS_ONLY = 0x1 << 23;
66 67
68const U32 DFQ_INC_PG = 0x1 << 24; // Flags appear in 1.23 viewer or later
69const U32 DFQ_INC_MATURE = 0x1 << 25;
70const U32 DFQ_INC_ADULT = 0x1 << 26;
71const U32 DFQ_INC_NEW_VIEWER = (DFQ_INC_PG | DFQ_INC_MATURE | DFQ_INC_ADULT); // Indicates 1.23 viewer or later
72
73const U32 DFQ_ADULT_SIMS_ONLY = 0x1 << 27;
74
67// Sell Type flags 75// Sell Type flags
68const U32 ST_AUCTION = 0x1 << 1; 76const U32 ST_AUCTION = 0x1 << 1;
69const U32 ST_NEWBIE = 0x1 << 2; 77const U32 ST_NEWBIE = 0x1 << 2;
@@ -72,4 +80,29 @@ const U32 ST_ESTATE = 0x1 << 4;
72 80
73const U32 ST_ALL = 0xFFFFFFFF; 81const U32 ST_ALL = 0xFFFFFFFF;
74 82
83// status flags embedded in search replay messages of classifieds, events, groups, and places.
84// Places
85const U32 STATUS_SEARCH_PLACES_NONE = 0x0;
86const U32 STATUS_SEARCH_PLACES_BANNEDWORD = 0x1 << 0;
87const U32 STATUS_SEARCH_PLACES_SHORTSTRING = 0x1 << 1;
88const U32 STATUS_SEARCH_PLACES_FOUNDNONE = 0x1 << 2;
89const U32 STATUS_SEARCH_PLACES_SEARCHDISABLED = 0x1 << 3;
90const U32 STATUS_SEARCH_PLACES_ESTATEEMPTY = 0x1 << 4;
91// Events
92const U32 STATUS_SEARCH_EVENTS_NONE = 0x0;
93const U32 STATUS_SEARCH_EVENTS_BANNEDWORD = 0x1 << 0;
94const U32 STATUS_SEARCH_EVENTS_SHORTSTRING = 0x1 << 1;
95const U32 STATUS_SEARCH_EVENTS_FOUNDNONE = 0x1 << 2;
96const U32 STATUS_SEARCH_EVENTS_SEARCHDISABLED = 0x1 << 3;
97const U32 STATUS_SEARCH_EVENTS_NODATEOFFSET = 0x1 << 4;
98const U32 STATUS_SEARCH_EVENTS_NOCATEGORY = 0x1 << 5;
99const U32 STATUS_SEARCH_EVENTS_NOQUERY = 0x1 << 6;
100
101//Classifieds
102const U32 STATUS_SEARCH_CLASSIFIEDS_NONE = 0x0;
103const U32 STATUS_SEARCH_CLASSIFIEDS_BANNEDWORD = 0x1 << 0;
104const U32 STATUS_SEARCH_CLASSIFIEDS_SHORTSTRING = 0x1 << 1;
105const U32 STATUS_SEARCH_CLASSIFIEDS_FOUNDNONE = 0x1 << 2;
106const U32 STATUS_SEARCH_CLASSIFIEDS_SEARCHDISABLED = 0x1 << 3;
107
75#endif 108#endif