You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@brief Initialize the Sanitizer component with domain allow lists.
139
+
@param initConfigObject An instance of ODWSanitizerInitConfig that contains the configuration settings for the Sanitizer component.
140
+
There is a property on initConfigObject named "SendConcernLimit" that controls the maximum number of concerns uploaded. If set to 0, no concerns are uploaded.
141
+
If set to 65536 or higher all concerns are uploaded. For n between 0 and 65536, n concerns are uploaded. This number cannot be changed after process start.
142
+
@param urlDomains Array of URL domains to allow (can be nil for empty list).
143
+
@param emailDomains Array of email domains to allow (can be nil for empty list).
144
+
@param analyzerOptions Analyzer options flags (bitwise OR of values):
145
+
- 0: None (default - no special analyzer behaviors)
146
+
- 1: SitePathStrict (enables strict site path analysis)
147
+
- 2: SitePathLoose (enables loose site path analysis)
148
+
Multiple flags can be combined with bitwise OR (e.g., 1 | 2 = 3)
0 commit comments