12+ results for 'Components.interfaces.nsISocketTransportService' (0 ms)
Not the results you expected?
shell_reverse_tcp.rb (https://github.com/techpeace/metasploit-framework.git) Ruby · 73 lines
BinarySocket.js (https://github.com/aptana/Jaxer.git) JavaScript · 183 lines
LocalProxy.js (git://pkgs.fedoraproject.org/mozilla-googlesharing) JavaScript · 94 lines
77 LocalProxy.prototype.connectToRemoteProxy = function() {
78 var transportService = Components.classes["@mozilla.org/network/socket-transport-service;1"].getService(Components.interfaces.nsISocketTransportService);
79 return transportService.createTransport(['ssl'],1,this.remoteProxy.getHost(), this.remoteProxy.getSSLPort(),this.tunnelProxy);
80 };
LocalProxy.js (https://github.com/timkuijsten/GoogleSharing.git) JavaScript · 128 lines
tcpclient.js (https://github.com/sid984/firefox-freenet-plugin.git) JavaScript · 83 lines
14 log("Connecting to " + this.host + ":" + this.port + " ...");
15 var socketTransportService = Components.classes["@mozilla.org/network/socket-transport-service;1"]
16 .getService(Components.interfaces.nsISocketTransportService);
17 this.socketTransport = socketTransportService.createTransport(["starttls"], 1, this.host, this.port, null);
services.js (https://github.com/studgeek/WebStorm-Firefox-Connector.git) JavaScript · 129 lines
Socket.js (https://bitbucket.org/activestate/komodo-3rdparty) JavaScript · 179 lines
hydraloadOverlay.js (https://gitlab.com/timofonic/hydranode) JavaScript · 106 lines
mobibar_working.js (https://bitbucket.org/ykim320/kayo.git) JavaScript · 91 lines
6 var data = query;
7 this.transportService = Components.classes["@mozilla.org/network/socket-transport-service;1"].
8 getService(Components.interfaces.nsISocketTransportService);
9 this.scriptablestream = Components.classes["@mozilla.org/scriptableinputstream;1"].
10 createInstance(Components.interfaces.nsIScriptableInputStream);