Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.135.246.88
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
bonjour /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.npmignore
13
B
-rw-r--r--
2015-10-17 18:52
.travis.yml
81
B
-rw-r--r--
2016-05-06 17:40
LICENSE
1.07
KB
-rw-r--r--
2016-02-29 18:30
README.md
4.28
KB
-rw-r--r--
2016-05-07 09:25
index.js
922
B
-rw-r--r--
2016-04-30 20:40
package.json
1.76
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
'use strict' var Registry = require('./lib/registry') var Server = require('./lib/mdns-server') var Browser = require('./lib/browser') module.exports = Bonjour function Bonjour (opts) { if (!(this instanceof Bonjour)) return new Bonjour(opts) this._server = new Server(opts) this._registry = new Registry(this._server) } Bonjour.prototype.publish = function (opts) { return this._registry.publish(opts) } Bonjour.prototype.unpublishAll = function (cb) { this._registry.unpublishAll(cb) } Bonjour.prototype.find = function (opts, onup) { return new Browser(this._server.mdns, opts, onup) } Bonjour.prototype.findOne = function (opts, cb) { var browser = new Browser(this._server.mdns, opts) browser.once('up', function (service) { browser.stop() if (cb) cb(service) }) return browser } Bonjour.prototype.destroy = function () { this._registry.destroy() this._server.mdns.destroy() }