1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
//
// DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIProtocolProxyService.idl
//


/// `interface nsIProtocolProxyService : nsISupports`
///

/// ```text
/// /**
///  * nsIProtocolProxyService provides methods to access information about
///  * various network proxies.
///  */
/// ```
///

// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsIProtocolProxyService {
    vtable: *const nsIProtocolProxyServiceVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsIProtocolProxyService.
unsafe impl XpCom for nsIProtocolProxyService {
    const IID: nsIID = nsID(0xef57c8b6, 0xe09d, 0x4cd4,
        [0x92, 0x22, 0x2a, 0x5d, 0x24, 0x02, 0xe1, 0x5d]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsIProtocolProxyService {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsIProtocolProxyService.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsIProtocolProxyServiceCoerce {
    /// Cheaply cast a value of this type from a `nsIProtocolProxyService`.
    fn coerce_from(v: &nsIProtocolProxyService) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsIProtocolProxyServiceCoerce for nsIProtocolProxyService {
    #[inline]
    fn coerce_from(v: &nsIProtocolProxyService) -> &Self {
        v
    }
}

impl nsIProtocolProxyService {
    /// Cast this `nsIProtocolProxyService` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsIProtocolProxyServiceCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsIProtocolProxyService {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsIProtocolProxyServiceCoerce for T {
    #[inline]
    fn coerce_from(v: &nsIProtocolProxyService) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsIProtocolProxyService
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsIProtocolProxyServiceVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* nsICancelable asyncResolve (in nsISupports aChannelOrURI, in unsigned long aFlags, in nsIProtocolProxyCallback aCallback, [optional] in nsIEventTarget aMainThreadTarget); */
    pub AsyncResolve: unsafe extern "system" fn (this: *const nsIProtocolProxyService, aChannelOrURI: *const nsISupports, aFlags: libc::uint32_t, aCallback: *const nsIProtocolProxyCallback, aMainThreadTarget: *const nsIEventTarget, _retval: *mut *const nsICancelable) -> nsresult,

    /* nsIProxyInfo newProxyInfo (in ACString aType, in AUTF8String aHost, in long aPort, in unsigned long aFlags, in unsigned long aFailoverTimeout, in nsIProxyInfo aFailoverProxy); */
    pub NewProxyInfo: unsafe extern "system" fn (this: *const nsIProtocolProxyService, aType: &::nsstring::nsACString, aHost: &::nsstring::nsACString, aPort: libc::int32_t, aFlags: libc::uint32_t, aFailoverTimeout: libc::uint32_t, aFailoverProxy: *const nsIProxyInfo, _retval: *mut *const nsIProxyInfo) -> nsresult,

    /* nsIProxyInfo newProxyInfoWithAuth (in ACString aType, in AUTF8String aHost, in long aPort, in ACString aUsername, in ACString aPassword, in unsigned long aFlags, in unsigned long aFailoverTimeout, in nsIProxyInfo aFailoverProxy); */
    pub NewProxyInfoWithAuth: unsafe extern "system" fn (this: *const nsIProtocolProxyService, aType: &::nsstring::nsACString, aHost: &::nsstring::nsACString, aPort: libc::int32_t, aUsername: &::nsstring::nsACString, aPassword: &::nsstring::nsACString, aFlags: libc::uint32_t, aFailoverTimeout: libc::uint32_t, aFailoverProxy: *const nsIProxyInfo, _retval: *mut *const nsIProxyInfo) -> nsresult,

    /* nsIProxyInfo getFailoverForProxy (in nsIProxyInfo aProxyInfo, in nsIURI aURI, in nsresult aReason); */
    pub GetFailoverForProxy: unsafe extern "system" fn (this: *const nsIProtocolProxyService, aProxyInfo: *const nsIProxyInfo, aURI: *const nsIURI, aReason: nsresult, _retval: *mut *const nsIProxyInfo) -> nsresult,

    /* void registerFilter (in nsIProtocolProxyFilter aFilter, in unsigned long aPosition); */
    pub RegisterFilter: unsafe extern "system" fn (this: *const nsIProtocolProxyService, aFilter: *const nsIProtocolProxyFilter, aPosition: libc::uint32_t) -> nsresult,

    /* void registerChannelFilter (in nsIProtocolProxyChannelFilter aFilter, in unsigned long aPosition); */
    pub RegisterChannelFilter: unsafe extern "system" fn (this: *const nsIProtocolProxyService, aFilter: *const nsIProtocolProxyChannelFilter, aPosition: libc::uint32_t) -> nsresult,

    /* void unregisterFilter (in nsIProtocolProxyFilter aFilter); */
    pub UnregisterFilter: unsafe extern "system" fn (this: *const nsIProtocolProxyService, aFilter: *const nsIProtocolProxyFilter) -> nsresult,

    /* void unregisterChannelFilter (in nsIProtocolProxyChannelFilter aFilter); */
    pub UnregisterChannelFilter: unsafe extern "system" fn (this: *const nsIProtocolProxyService, aFilter: *const nsIProtocolProxyChannelFilter) -> nsresult,

    /* readonly attribute unsigned long proxyConfigType; */
    pub GetProxyConfigType: unsafe extern "system" fn (this: *const nsIProtocolProxyService, aProxyConfigType: *mut libc::uint32_t) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsIProtocolProxyService {
    /// ```text
    /// /** Flag 1 << 0 is unused **/
    /// /**
    ///      * When the proxy configuration is manual this flag may be passed to the
    ///      * resolve and asyncResolve methods to request to prefer the SOCKS proxy
    ///      * to HTTP ones.
    ///      */
    /// ```
    ///

    pub const RESOLVE_PREFER_SOCKS_PROXY: i64 = 2;

    /// ```text
    /// /**
    ///      * When the proxy configuration is manual this flag may be passed to the
    ///      * resolve and asyncResolve methods to request to not analyze the uri's
    ///      * scheme specific proxy. When this flag is set the main HTTP proxy is the
    ///      * preferred one.
    ///      *
    ///      * NOTE: if RESOLVE_PREFER_SOCKS_PROXY is set then the SOCKS proxy is
    ///      *       the preferred one.
    ///      *
    ///      * NOTE: if RESOLVE_PREFER_HTTPS_PROXY is set then the HTTPS proxy
    ///      *       is the preferred one.
    ///      */
    /// ```
    ///

    pub const RESOLVE_IGNORE_URI_SCHEME: i64 = 4;

    /// ```text
    /// /**
    ///      * When the proxy configuration is manual this flag may be passed to the
    ///      * resolve and asyncResolve methods to request to prefer the HTTPS proxy
    ///      * to the others HTTP ones.
    ///      *
    ///      * NOTE: RESOLVE_PREFER_SOCKS_PROXY takes precedence over this flag.
    ///      *
    ///      * NOTE: This flag implies RESOLVE_IGNORE_URI_SCHEME.
    ///      */
    /// ```
    ///

    pub const RESOLVE_PREFER_HTTPS_PROXY: i64 = 12;

    /// ```text
    /// /**
    ///      * When the proxy configuration is manual this flag may be passed to the
    ///      * resolve and asyncResolve methods to that all methods will be tunneled via
    ///      * CONNECT through the http proxy.
    ///      */
    /// ```
    ///

    pub const RESOLVE_ALWAYS_TUNNEL: i64 = 16;

    /// ```text
    /// /**
    ///       * These values correspond to the possible integer values for the
    ///       * network.proxy.type preference.
    ///       */
    /// ```
    ///

    pub const PROXYCONFIG_DIRECT: i64 = 0;


    pub const PROXYCONFIG_MANUAL: i64 = 1;


    pub const PROXYCONFIG_PAC: i64 = 2;


    pub const PROXYCONFIG_WPAD: i64 = 4;


    pub const PROXYCONFIG_SYSTEM: i64 = 5;

    /// ```text
    /// /**
    ///      * This method returns via callback a nsIProxyInfo instance that identifies
    ///      * a proxy to be used for the given channel.  Otherwise, this method returns
    ///      * null indicating that a direct connection should be used.
    ///      *
    ///      * @param aChannelOrURI
    ///      *        The channel for which a proxy is to be found, or, if no channel is
    ///      *        available, a URI indicating the same. This method will return
    ///      *        NS_ERROR_NOINTERFACE if this argument isn't either an nsIURI or an
    ///      *        nsIChannel.
    ///      * @param aFlags
    ///      *        A bit-wise combination of the RESOLVE_ flags defined above.  Pass
    ///      *        0 to specify the default behavior.  Any additional bits that do
    ///      *        not correspond to a RESOLVE_ flag are reserved for future use.
    ///      * @param aCallback
    ///      *        The object to be notified when the result is available.
    ///      * @param aMainThreadTarget
    ///      *        A labelled event target for dispatching runnables to main thread.
    ///      *
    ///      * @return An object that can be used to cancel the asychronous operation.
    ///      *         If canceled, the cancelation status (aReason) will be forwarded
    ///      *         to the callback's onProxyAvailable method via the aStatus param.
    ///      *
    ///      * NOTE: If this proxy is unavailable, getFailoverForProxy may be called
    ///      * to determine the correct secondary proxy to be used.
    ///      *
    ///      * NOTE: If the protocol handler for the given URI supports
    ///      * nsIProxiedProtocolHandler, then the nsIProxyInfo instance returned from
    ///      * resolve may be passed to the newProxiedChannel method to create a
    ///      * nsIChannel to the given URI that uses the specified proxy.
    ///      *
    ///      * NOTE: However, if the nsIProxyInfo type is "http", then it means that
    ///      * the given URI should be loaded using the HTTP protocol handler, which
    ///      * also supports nsIProxiedProtocolHandler.
    ///      *
    ///      * @see nsIProxiedProtocolHandler::newProxiedChannel
    ///      */
    /// ```
    ///

    /// `nsICancelable asyncResolve (in nsISupports aChannelOrURI, in unsigned long aFlags, in nsIProtocolProxyCallback aCallback, [optional] in nsIEventTarget aMainThreadTarget);`
    #[inline]
    pub unsafe fn AsyncResolve(&self, aChannelOrURI: *const nsISupports, aFlags: libc::uint32_t, aCallback: *const nsIProtocolProxyCallback, aMainThreadTarget: *const nsIEventTarget, _retval: *mut *const nsICancelable) -> nsresult {
        ((*self.vtable).AsyncResolve)(self, aChannelOrURI, aFlags, aCallback, aMainThreadTarget, _retval)
    }


    /// ```text
    /// /**
    ///      * This method may be called to construct a nsIProxyInfo instance from
    ///      * the given parameters.  This method may be useful in conjunction with
    ///      * nsISocketTransportService::createTransport for creating, for example,
    ///      * a SOCKS connection.
    ///      *
    ///      * @param aType
    ///      *        The proxy type.  This is a string value that identifies the proxy
    ///      *        type.  Standard values include:
    ///      *          "http"    - specifies a HTTP proxy
    ///      *          "https"   - specifies HTTP proxying over TLS connection to proxy
    ///      *          "socks"   - specifies a SOCKS version 5 proxy
    ///      *          "socks4"  - specifies a SOCKS version 4 proxy
    ///      *          "direct"  - specifies a direct connection (useful for failover)
    ///      *        The type name is case-insensitive.  Other string values may be
    ///      *        possible, and new types may be defined by a future version of
    ///      *        this interface.
    ///      * @param aHost
    ///      *        The proxy hostname or IP address.
    ///      * @param aPort
    ///      *        The proxy port.
    ///      * @param aFlags
    ///      *        Flags associated with this connection.  See nsIProxyInfo.idl
    ///      *        for currently defined flags.
    ///      * @param aFailoverTimeout
    ///      *        Specifies the length of time (in seconds) to ignore this proxy if
    ///      *        this proxy fails.  Pass UINT32_MAX to specify the default
    ///      *        timeout value, causing nsIProxyInfo::failoverTimeout to be
    ///      *        assigned the default value.
    ///      * @param aFailoverProxy
    ///      *        Specifies the next proxy to try if this proxy fails.  This
    ///      *        parameter may be null.
    ///      */
    /// ```
    ///

    /// `nsIProxyInfo newProxyInfo (in ACString aType, in AUTF8String aHost, in long aPort, in unsigned long aFlags, in unsigned long aFailoverTimeout, in nsIProxyInfo aFailoverProxy);`
    #[inline]
    pub unsafe fn NewProxyInfo(&self, aType: &::nsstring::nsACString, aHost: &::nsstring::nsACString, aPort: libc::int32_t, aFlags: libc::uint32_t, aFailoverTimeout: libc::uint32_t, aFailoverProxy: *const nsIProxyInfo, _retval: *mut *const nsIProxyInfo) -> nsresult {
        ((*self.vtable).NewProxyInfo)(self, aType, aHost, aPort, aFlags, aFailoverTimeout, aFailoverProxy, _retval)
    }


    /// ```text
    /// /**
    ///      * This method may be called to construct a nsIProxyInfo instance for
    ///      * with the specified username and password.
    ///      * Currently implemented for SOCKS proxies only.
    ///      * @param aType
    ///      *        The proxy type.  This is a string value that identifies the proxy
    ///      *        type.  Standard values include:
    ///      *          "socks"   - specifies a SOCKS version 5 proxy
    ///      *          "socks4"  - specifies a SOCKS version 4 proxy
    ///      *        The type name is case-insensitive.  Other string values may be
    ///      *        possible, and new types may be defined by a future version of
    ///      *        this interface.
    ///      * @param aHost
    ///      *        The proxy hostname or IP address.
    ///      * @param aPort
    ///      *        The proxy port.
    ///      * @param aUsername
    ///      *        The proxy username
    ///      * @param aPassword
    ///      *        The proxy password
    ///      * @param aFlags
    ///      *        Flags associated with this connection.  See nsIProxyInfo.idl
    ///      *        for currently defined flags.
    ///      * @param aFailoverTimeout
    ///      *        Specifies the length of time (in seconds) to ignore this proxy if
    ///      *        this proxy fails.  Pass UINT32_MAX to specify the default
    ///      *        timeout value, causing nsIProxyInfo::failoverTimeout to be
    ///      *        assigned the default value.
    ///      * @param aFailoverProxy
    ///      *        Specifies the next proxy to try if this proxy fails.  This
    ///      *        parameter may be null.
    ///      */
    /// ```
    ///

    /// `nsIProxyInfo newProxyInfoWithAuth (in ACString aType, in AUTF8String aHost, in long aPort, in ACString aUsername, in ACString aPassword, in unsigned long aFlags, in unsigned long aFailoverTimeout, in nsIProxyInfo aFailoverProxy);`
    #[inline]
    pub unsafe fn NewProxyInfoWithAuth(&self, aType: &::nsstring::nsACString, aHost: &::nsstring::nsACString, aPort: libc::int32_t, aUsername: &::nsstring::nsACString, aPassword: &::nsstring::nsACString, aFlags: libc::uint32_t, aFailoverTimeout: libc::uint32_t, aFailoverProxy: *const nsIProxyInfo, _retval: *mut *const nsIProxyInfo) -> nsresult {
        ((*self.vtable).NewProxyInfoWithAuth)(self, aType, aHost, aPort, aUsername, aPassword, aFlags, aFailoverTimeout, aFailoverProxy, _retval)
    }


    /// ```text
    /// /**
    ///      * If the proxy identified by aProxyInfo is unavailable for some reason,
    ///      * this method may be called to access an alternate proxy that may be used
    ///      * instead.  As a side-effect, this method may affect future result values
    ///      * from resolve/asyncResolve as well as from getFailoverForProxy.
    ///      *
    ///      * @param aProxyInfo
    ///      *        The proxy that was unavailable.
    ///      * @param aURI
    ///      *        The URI that was originally passed to resolve/asyncResolve.
    ///      * @param aReason
    ///      *        The error code corresponding to the proxy failure.  This value
    ///      *        may be used to tune the delay before this proxy is used again.
    ///      *
    ///      * @throw NS_ERROR_NOT_AVAILABLE if there is no alternate proxy available.
    ///      */
    /// ```
    ///

    /// `nsIProxyInfo getFailoverForProxy (in nsIProxyInfo aProxyInfo, in nsIURI aURI, in nsresult aReason);`
    #[inline]
    pub unsafe fn GetFailoverForProxy(&self, aProxyInfo: *const nsIProxyInfo, aURI: *const nsIURI, aReason: nsresult, _retval: *mut *const nsIProxyInfo) -> nsresult {
        ((*self.vtable).GetFailoverForProxy)(self, aProxyInfo, aURI, aReason, _retval)
    }


    /// ```text
    /// /**
    ///      * This method may be used to register a proxy filter instance.  Each proxy
    ///      * filter is registered with an associated position that determines the
    ///      * order in which the filters are applied (starting from position 0).  When
    ///      * resolve/asyncResolve is called, it generates a list of proxies for the
    ///      * given URI, and then it applies the proxy filters.  The filters have the
    ///      * opportunity to modify the list of proxies.
    ///      *
    ///      * If two filters register for the same position, then the filters will be
    ///      * visited in the order in which they were registered.
    ///      *
    ///      * If the filter is already registered, then its position will be updated.
    ///      *
    ///      * After filters have been run, any disabled or disallowed proxies will be
    ///      * removed from the list.  A proxy is disabled if it had previously failed-
    ///      * over to another proxy (see getFailoverForProxy).  A proxy is disallowed,
    ///      * for example, if it is a HTTP proxy and the nsIProtocolHandler for the
    ///      * queried URI does not permit proxying via HTTP.
    ///      *
    ///      * If a nsIProtocolHandler disallows all proxying, then filters will never
    ///      * have a chance to intercept proxy requests for such URLs.
    ///      *
    ///      * @param aFilter
    ///      *        The nsIProtocolProxyFilter instance to be registered.
    ///      * @param aPosition
    ///      *        The position of the filter.
    ///      *
    ///      * NOTE: It is possible to construct filters that compete with one another
    ///      * in undesirable ways.  This API does not attempt to protect against such
    ///      * problems.  It is recommended that any extensions that choose to call
    ///      * this method make their position value configurable at runtime (perhaps
        ///      * via the preferences service).
    ///      */
    /// ```
    ///

    /// `void registerFilter (in nsIProtocolProxyFilter aFilter, in unsigned long aPosition);`
    #[inline]
    pub unsafe fn RegisterFilter(&self, aFilter: *const nsIProtocolProxyFilter, aPosition: libc::uint32_t) -> nsresult {
        ((*self.vtable).RegisterFilter)(self, aFilter, aPosition)
    }


    /// ```text
    /// /**
    ///      * Similar to registerFilter, but accepts an nsIProtocolProxyChannelFilter,
    ///      * which selects proxies according to channel rather than URI.
    ///      *
    ///      * @param aFilter
    ///      *        The nsIProtocolProxyChannelFilter instance to be registered.
    ///      * @param aPosition
    ///      *        The position of the filter.
    ///      */
    /// ```
    ///

    /// `void registerChannelFilter (in nsIProtocolProxyChannelFilter aFilter, in unsigned long aPosition);`
    #[inline]
    pub unsafe fn RegisterChannelFilter(&self, aFilter: *const nsIProtocolProxyChannelFilter, aPosition: libc::uint32_t) -> nsresult {
        ((*self.vtable).RegisterChannelFilter)(self, aFilter, aPosition)
    }


    /// ```text
    /// /**
    ///      * This method may be used to unregister a proxy filter instance.  All
    ///      * filters will be automatically unregistered at XPCOM shutdown.
    ///      *
    ///      * @param aFilter
    ///      *        The nsIProtocolProxyFilter instance to be unregistered.
    ///      */
    /// ```
    ///

    /// `void unregisterFilter (in nsIProtocolProxyFilter aFilter);`
    #[inline]
    pub unsafe fn UnregisterFilter(&self, aFilter: *const nsIProtocolProxyFilter) -> nsresult {
        ((*self.vtable).UnregisterFilter)(self, aFilter)
    }


    /// ```text
    /// /**
    ///      * This method may be used to unregister a proxy channel filter instance.  All
    ///      * filters will be automatically unregistered at XPCOM shutdown.
    ///      *
    ///      * @param aFilter
    ///      *        The nsIProtocolProxyChannelFilter instance to be unregistered.
    ///      */
    /// ```
    ///

    /// `void unregisterChannelFilter (in nsIProtocolProxyChannelFilter aFilter);`
    #[inline]
    pub unsafe fn UnregisterChannelFilter(&self, aFilter: *const nsIProtocolProxyChannelFilter) -> nsresult {
        ((*self.vtable).UnregisterChannelFilter)(self, aFilter)
    }


    /// ```text
    /// /**
    ///       * This attribute specifies the current type of proxy configuration.
    ///       */
    /// ```
    ///

    /// `readonly attribute unsigned long proxyConfigType;`
    #[inline]
    pub unsafe fn GetProxyConfigType(&self, aProxyConfigType: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetProxyConfigType)(self, aProxyConfigType)
    }


}