diff options
author | Jacek Antonelli | 2009-04-30 13:04:20 -0500 |
---|---|---|
committer | Jacek Antonelli | 2009-04-30 13:07:16 -0500 |
commit | ca8149ca6d157eb4b5fc8ba0e5ba3a6e56f72e7e (patch) | |
tree | 8348301d0ac44a524f1819b777686bf086907d76 /linden/indra/llmessage/llqueryflags.h | |
parent | Second Life viewer sources 1.22.11 (diff) | |
download | meta-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.h | 35 |
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; | |||
64 | const U32 DFQ_FILTER_MATURE = 0x1 << 22; | 65 | const U32 DFQ_FILTER_MATURE = 0x1 << 22; |
65 | const U32 DFQ_PG_PARCELS_ONLY = 0x1 << 23; | 66 | const U32 DFQ_PG_PARCELS_ONLY = 0x1 << 23; |
66 | 67 | ||
68 | const U32 DFQ_INC_PG = 0x1 << 24; // Flags appear in 1.23 viewer or later | ||
69 | const U32 DFQ_INC_MATURE = 0x1 << 25; | ||
70 | const U32 DFQ_INC_ADULT = 0x1 << 26; | ||
71 | const U32 DFQ_INC_NEW_VIEWER = (DFQ_INC_PG | DFQ_INC_MATURE | DFQ_INC_ADULT); // Indicates 1.23 viewer or later | ||
72 | |||
73 | const U32 DFQ_ADULT_SIMS_ONLY = 0x1 << 27; | ||
74 | |||
67 | // Sell Type flags | 75 | // Sell Type flags |
68 | const U32 ST_AUCTION = 0x1 << 1; | 76 | const U32 ST_AUCTION = 0x1 << 1; |
69 | const U32 ST_NEWBIE = 0x1 << 2; | 77 | const U32 ST_NEWBIE = 0x1 << 2; |
@@ -72,4 +80,29 @@ const U32 ST_ESTATE = 0x1 << 4; | |||
72 | 80 | ||
73 | const U32 ST_ALL = 0xFFFFFFFF; | 81 | const U32 ST_ALL = 0xFFFFFFFF; |
74 | 82 | ||
83 | // status flags embedded in search replay messages of classifieds, events, groups, and places. | ||
84 | // Places | ||
85 | const U32 STATUS_SEARCH_PLACES_NONE = 0x0; | ||
86 | const U32 STATUS_SEARCH_PLACES_BANNEDWORD = 0x1 << 0; | ||
87 | const U32 STATUS_SEARCH_PLACES_SHORTSTRING = 0x1 << 1; | ||
88 | const U32 STATUS_SEARCH_PLACES_FOUNDNONE = 0x1 << 2; | ||
89 | const U32 STATUS_SEARCH_PLACES_SEARCHDISABLED = 0x1 << 3; | ||
90 | const U32 STATUS_SEARCH_PLACES_ESTATEEMPTY = 0x1 << 4; | ||
91 | // Events | ||
92 | const U32 STATUS_SEARCH_EVENTS_NONE = 0x0; | ||
93 | const U32 STATUS_SEARCH_EVENTS_BANNEDWORD = 0x1 << 0; | ||
94 | const U32 STATUS_SEARCH_EVENTS_SHORTSTRING = 0x1 << 1; | ||
95 | const U32 STATUS_SEARCH_EVENTS_FOUNDNONE = 0x1 << 2; | ||
96 | const U32 STATUS_SEARCH_EVENTS_SEARCHDISABLED = 0x1 << 3; | ||
97 | const U32 STATUS_SEARCH_EVENTS_NODATEOFFSET = 0x1 << 4; | ||
98 | const U32 STATUS_SEARCH_EVENTS_NOCATEGORY = 0x1 << 5; | ||
99 | const U32 STATUS_SEARCH_EVENTS_NOQUERY = 0x1 << 6; | ||
100 | |||
101 | //Classifieds | ||
102 | const U32 STATUS_SEARCH_CLASSIFIEDS_NONE = 0x0; | ||
103 | const U32 STATUS_SEARCH_CLASSIFIEDS_BANNEDWORD = 0x1 << 0; | ||
104 | const U32 STATUS_SEARCH_CLASSIFIEDS_SHORTSTRING = 0x1 << 1; | ||
105 | const U32 STATUS_SEARCH_CLASSIFIEDS_FOUNDNONE = 0x1 << 2; | ||
106 | const U32 STATUS_SEARCH_CLASSIFIEDS_SEARCHDISABLED = 0x1 << 3; | ||
107 | |||
75 | #endif | 108 | #endif |