Bumping manifests a=b2g-bump
[gecko.git] / media / mtransport / stun_udp_socket_filter.h
blobc230f58a771eb425cf2cbb87b0fa076938ad997c
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 #ifndef stun_udp_socket_filter_h__
5 #define stun_udp_socket_filter_h__
7 #include "nsIUDPSocketFilter.h"
9 #define NS_STUN_UDP_SOCKET_FILTER_HANDLER_CONTRACTID NS_NETWORK_UDP_SOCKET_FILTER_HANDLER_PREFIX "stun"
10 #define NS_STUN_UDP_SOCKET_FILTER_HANDLER_CID { 0x3e43ee93, 0x829e, 0x4ea6, \
11 { 0xa3, 0x4e, 0x62, 0xd9, 0xe4, 0xc9, 0xf9, 0x93 } };
13 class nsStunUDPSocketFilterHandler : public nsIUDPSocketFilterHandler {
14 public:
15 NS_DECL_ISUPPORTS
16 NS_DECL_NSIUDPSOCKETFILTERHANDLER
17 private:
18 virtual ~nsStunUDPSocketFilterHandler() {}
22 #endif // stun_udp_socket_filter_h__