Media/WebRTC/WebRTCE10S/NetworkProxyInterface: Difference between revisions

From MozillaWiki
< Media‎ | WebRTC‎ | WebRTCE10S
Jump to navigation Jump to search
Line 11: Line 11:
       InterfaceType type;
       InterfaceType type;
     }
     }
    enum InterfaceType { Local, Wired, WiFi, Mobile, Virtual };


    enum InterfaceType { Local, Wired, WiFi, Mobile, Virtual };
it would be best if this were a synchronous RPC call, but if it has to be async we can live with that.


==== Packet Transmisson and Reception ====
==== Packet Transmisson and Reception ====

Revision as of 09:56, 24 April 2013

Network Proxy Interfaces for WebRTC E10S Split

Address Enumeration

 EnumerateInterfaces()
   
   Returns a sequence of:
   {
      string name;
      PRNetAddr address;
      InterfaceType type;
    }
    enum InterfaceType { Local, Wired, WiFi, Mobile, Virtual };

it would be best if this were a synchronous RPC call, but if it has to be async we can live with that.

Packet Transmisson and Reception