responder
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 13
OpenCA OCSP Responder 1.5.1 RC1
The OpenCA OCSP Responder is an RFC 2560 compliant OCSPD responder. more>>
The OpenCA OCSP Responder is an RFC 2560 compliant OCSPD responder. It can be used to verify the status of a certificate using from OCSP clients (such as Mozilla/Netscape7).
The Responder is actually included into the main OpenCA distribution package. It is also possible to install the daemon as a stand-alone application, all you will need is a CRL (or access to an LDAP server where to get the CRL from).
Actually not extensive testing has been carried out, anyway this daemon is reported to work with Mozilla/Netscape. If you have carried out some testing and want to discuss it with us, please just send an e-mail or subscribe the openca mailing lists.
To install the package follow the provided INSTALL script and edit the config file to fillfull your needs. Remember that youll need the 0.9.7 version of the OpenSSL package - current source code (0.9.7d).
Whats New in 1.1.1 Stable Release:
- The requirement for the index file option in the configuration file has been removed (it was not used).
Whats New in 1.5.1 RC1 Development Release:
- Thread support was added.
- HTTP header parsing was improved.
<<lessThe Responder is actually included into the main OpenCA distribution package. It is also possible to install the daemon as a stand-alone application, all you will need is a CRL (or access to an LDAP server where to get the CRL from).
Actually not extensive testing has been carried out, anyway this daemon is reported to work with Mozilla/Netscape. If you have carried out some testing and want to discuss it with us, please just send an e-mail or subscribe the openca mailing lists.
To install the package follow the provided INSTALL script and edit the config file to fillfull your needs. Remember that youll need the 0.9.7 version of the OpenSSL package - current source code (0.9.7d).
Whats New in 1.1.1 Stable Release:
- The requirement for the index file option in the configuration file has been removed (it was not used).
Whats New in 1.5.1 RC1 Development Release:
- Thread support was added.
- HTTP header parsing was improved.
Download (0.39MB)
Added: 2006-10-22 License: Freely Distributable Price:
1102 downloads
Simple Multi User Out-Of-Office-Responder 20070720
Simple Multi User Out-Of-Office-Responder is a vacation email responder. more>> <<less
Download (0.005MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
824 downloads
Hardware::Simulator 0000_0005
Hardware::Simulator is a Perl extension for Perl Hardware Descriptor Language. more>>
Hardware::Simulator is a Perl extension for Perl Hardware Descriptor Language.
SYNOPSIS
use Hardware::Simulator;
# NewSignal( perl_variable [, initial_value]);
# create a signal called $in_clk, give it an initial value of 1
NewSignal(my $in_clk,1);
# Repeater ( time_units , code_ref)
# every time_units, call the code reference, starting at the current time
Repeater ( 5, sub{if ( $in_clk==0) { $in_clk=1;} else { $in_clk=0;}});
# Responder ( [signal_name ... signal_name], code_ref );
# respond to any changes to signals by calling code reference.
# any time out_clk changes, print value of clock and simulation time.
Responder ( $out_clk, sub
{
my $time = SimTime();
print "out_clk = $out_clk. time=$timen";
});
# start processing of events and event scheduling.
EventLoop();
Hardware::Simulator ==> a Perl Hardware Descriptor Language
Hardware::Simulator is a lightweight version of VHDL or Verilog HDL. All of these languages were developed as means to describe hardware.
Hardware::Simulator was created as a means to quickly prototype a basic hardware design and simulate it. VHDL and Verilog are both restrictive in their own ways. Hardware::Simulator was created to quickly put something together as a "proof of concept", to show that a design concept would work or not. and then the design could be translated to VHDL or Verilog.
The problem that started all of this was designing a fifo for a video scaling asic. The chip used a buffer to store incoming video data. The asic read the buffer to generate the outgoing video image. We estimated how large we thought the buffer needed to be, but we wanted to confirm that our numbers were right by running simulations.
The problem was we needed to run hundreds of different simulations, given the permutations of input image formats, output image formats, and input/output clock frequencies. We also had text files containing valid formats and frequencies. A text file as input called for perl to manipulate, split, format, and extract the data properly.
This data then had to be translated onto the a HDL simulation. The problem was that there was no easy way to write a perl script that would simulate hardware, so the only solution was to have perl drive a Verilog simulator and pass all these parameters via command line parameters. so then verilog files had to be created, and the simulator had to be driven, and the end result was a lot of work to simulate a simple fifo.
Time contraints did not allow me to develop a HDL package for perl to solve the original problem, but I took it on in my spare time. and eventually Hardware::Simulator was born.
<<lessSYNOPSIS
use Hardware::Simulator;
# NewSignal( perl_variable [, initial_value]);
# create a signal called $in_clk, give it an initial value of 1
NewSignal(my $in_clk,1);
# Repeater ( time_units , code_ref)
# every time_units, call the code reference, starting at the current time
Repeater ( 5, sub{if ( $in_clk==0) { $in_clk=1;} else { $in_clk=0;}});
# Responder ( [signal_name ... signal_name], code_ref );
# respond to any changes to signals by calling code reference.
# any time out_clk changes, print value of clock and simulation time.
Responder ( $out_clk, sub
{
my $time = SimTime();
print "out_clk = $out_clk. time=$timen";
});
# start processing of events and event scheduling.
EventLoop();
Hardware::Simulator ==> a Perl Hardware Descriptor Language
Hardware::Simulator is a lightweight version of VHDL or Verilog HDL. All of these languages were developed as means to describe hardware.
Hardware::Simulator was created as a means to quickly prototype a basic hardware design and simulate it. VHDL and Verilog are both restrictive in their own ways. Hardware::Simulator was created to quickly put something together as a "proof of concept", to show that a design concept would work or not. and then the design could be translated to VHDL or Verilog.
The problem that started all of this was designing a fifo for a video scaling asic. The chip used a buffer to store incoming video data. The asic read the buffer to generate the outgoing video image. We estimated how large we thought the buffer needed to be, but we wanted to confirm that our numbers were right by running simulations.
The problem was we needed to run hundreds of different simulations, given the permutations of input image formats, output image formats, and input/output clock frequencies. We also had text files containing valid formats and frequencies. A text file as input called for perl to manipulate, split, format, and extract the data properly.
This data then had to be translated onto the a HDL simulation. The problem was that there was no easy way to write a perl script that would simulate hardware, so the only solution was to have perl drive a Verilog simulator and pass all these parameters via command line parameters. so then verilog files had to be created, and the simulator had to be driven, and the end result was a lot of work to simulate a simple fifo.
Time contraints did not allow me to develop a HDL package for perl to solve the original problem, but I took it on in my spare time. and eventually Hardware::Simulator was born.
Download (0.010MB)
Added: 2007-07-20 License: Perl Artistic License Price:
840 downloads
PHPObject 1.52
PHPObject provides an alternative to Flash Remoting for PHP developers. more>>
PHPObject provides an alternative to Flash Remoting for PHP developers.
PHPObject is an open source alternative to Flash Remoting for PHP developers. With PHPObject, users can call a method of a PHP class/library on a Web server as if the class/library was defined in Flash itself.
It takes care of client-server connections and makes passing of variables (properties) between Flash MX and PHP easy, and thereby providing a convenient way to connect rich media clients with data and business logic residing on a server.
The library, together with a WebServicesConnectivityAddOn, also allows developers to easily consume Web services from within Flash MX.
Main features:
- Handles most data types - arrays, objects, strings, numbers, etc. with multibyte character support
- When a PHPObject is created in Flash MX, it automatically gets its default properties from the remote object
- Validate whether method exists on the remote object before connection
- Allows only one server connection per object at a time to preserve data integrity (ie remote methods of the same object cannot be called simultaneously)
- [new in v1.1] More than one remote method can be invoked sequentially per connection (rather than having to make a new connection for each method called)
- [new in v1.2] Makes consuming SOAP-based web services easy
- [new in v1.3] Protect your gateway from unauthorized use with a key
- [new in v1.43] Allows parameters to be passed to the remote objects constructor
- Event handlers (responders) such as onAbort, onInit, onError, and onResult
- Responders can be defined for individual methods, eg. myFoo.doMethod_onResult = function(result){}
- Uses PHPs native serialize() and unserialize() functions for performance
Enhancements:
- added ability to declare a classMethods array in PHP class - when declared, this will determine what methods are exposed to Flash
- fixed deprecated code bug (when published to Flash Player 8)
<<lessPHPObject is an open source alternative to Flash Remoting for PHP developers. With PHPObject, users can call a method of a PHP class/library on a Web server as if the class/library was defined in Flash itself.
It takes care of client-server connections and makes passing of variables (properties) between Flash MX and PHP easy, and thereby providing a convenient way to connect rich media clients with data and business logic residing on a server.
The library, together with a WebServicesConnectivityAddOn, also allows developers to easily consume Web services from within Flash MX.
Main features:
- Handles most data types - arrays, objects, strings, numbers, etc. with multibyte character support
- When a PHPObject is created in Flash MX, it automatically gets its default properties from the remote object
- Validate whether method exists on the remote object before connection
- Allows only one server connection per object at a time to preserve data integrity (ie remote methods of the same object cannot be called simultaneously)
- [new in v1.1] More than one remote method can be invoked sequentially per connection (rather than having to make a new connection for each method called)
- [new in v1.2] Makes consuming SOAP-based web services easy
- [new in v1.3] Protect your gateway from unauthorized use with a key
- [new in v1.43] Allows parameters to be passed to the remote objects constructor
- Event handlers (responders) such as onAbort, onInit, onError, and onResult
- Responders can be defined for individual methods, eg. myFoo.doMethod_onResult = function(result){}
- Uses PHPs native serialize() and unserialize() functions for performance
Enhancements:
- added ability to declare a classMethods array in PHP class - when declared, this will determine what methods are exposed to Flash
- fixed deprecated code bug (when published to Flash Player 8)
Download (0.11MB)
Added: 2007-02-21 License: LGPL (GNU Lesser General Public License) Price:
976 downloads
ICMP Hostname Tools for Linux 0.3
The ICMP Hostname Tools for Linux include a responder daemon, a lookup tool, and a nameswitch module. more>>
The ICMP Hostname Tools for Linux include a responder daemon, a lookup tool, and a nameswitch module to handle ICMP host name functions.
The NSS module caches all requests (including failures) and honors the TTL value sent by the responding host. It uses a configuration file called /etc/nss-icmp.conf, which controls different aspects of its operation:
* timeout Sets the timeout in milliseconds for ICMP host name queries, by passing the -t option to idnlookup.
* nocache Disables the cache.
* ttlnotfound Sets the TTL for not-found cache entries is seconds. The default is 5 minutes.
Both icmpdnd and idnlookup need to run as root, due to the fact that they use ICMP. Thus, idnlookup needs be installed SUID root.
<<lessThe NSS module caches all requests (including failures) and honors the TTL value sent by the responding host. It uses a configuration file called /etc/nss-icmp.conf, which controls different aspects of its operation:
* timeout Sets the timeout in milliseconds for ICMP host name queries, by passing the -t option to idnlookup.
* nocache Disables the cache.
* ttlnotfound Sets the TTL for not-found cache entries is seconds. The default is 5 minutes.
Both icmpdnd and idnlookup need to run as root, due to the fact that they use ICMP. Thus, idnlookup needs be installed SUID root.
Download (0.026MB)
Added: 2005-06-28 License: GPL (GNU General Public License) Price:
1579 downloads
GTP server simulator 0.1
GTP server simulator is a simple responder for the GTP (GTP prime) protocol. more>>
GTP server simulator is a simple responder for the GTP (GTP prime) protocol that works with the Cisco Content Services Gateway to provide per-user traffic limits.
GTP` (GTP prime) server simulator (it permits any content and provide quadrants for every operation) binaries for Linux (run under Fedora Core 4 and 5).
The binary was tested with Cisco CSG.
<<lessGTP` (GTP prime) server simulator (it permits any content and provide quadrants for every operation) binaries for Linux (run under Fedora Core 4 and 5).
The binary was tested with Cisco CSG.
Download (0.017MB)
Added: 2006-12-19 License: Other/Proprietary License Price:
619 downloads
Horde Vacation H3 3.0.1
Vacation is a Horde module for managing user e-mail vacation notices or auto-responders. more>>
Vacation is a Horde module for managing user e-mail "auto-responders" or "vacation notices". It works via a local vacation program which must be installed and functioning on the server. It supports vacation programs using the .forward-style forwarding mechanism supported by several popular mailers.
Right now, Vacation provides fairly complete support for managing .forward style vacation notices on Sendmail or Courier mail based systems via an FTP transport. It also has some support for LDAP, Qmail, and Exim SQL based servers.
Vacation is part of a suite of account management modules for Horde consisting of Accounts, Forwards, Passwd, and Vacation.
<<lessRight now, Vacation provides fairly complete support for managing .forward style vacation notices on Sendmail or Courier mail based systems via an FTP transport. It also has some support for LDAP, Qmail, and Exim SQL based servers.
Vacation is part of a suite of account management modules for Horde consisting of Accounts, Forwards, Passwd, and Vacation.
Download (0.89MB)
Added: 2007-03-15 License: Artistic License Price:
956 downloads
Vacation 1.1.8
Vacation is a mail auto-responder (for when you are on vacation and such), written in Perl. more>>
Vacation is a mail auto-responder (for when you are on vacation and such), written in Perl.
Vacation is loosely based on the vacation program by Larry Wall and Tom Christiansen.
I decided to write a new vacation clone since I could not find a version that would work reliably under Red Hat Linux 6.0. I finally found the old Perl version by Larry Wall and Tom Christiansen -- it was the most full-featured, and it almost worked. So, I decided to rewrite it. You may find the original version as "vacation.orig" in this distribution.
Since then, several others have released similar implementations and updates to vacation. While there is no longer a gap to fill, this version still provides a few unique features, flexibility, and portability.
You may also find a simpler auto-responder script in this distribution called mail-responder.pl. This precursor to vacation may be more appropriate at the system level (e.g., called from the aliases file) as compared to vacation which is designed for individual users.
Enhancements:
- Added a Vacation tag to From: addresses
- Added a routine to properly generate date headers (long overdue!) Thanks to Milivoj Ivkovic for the example
- Added a flag to only respond to specified senders Thanks to Jeff Chan for the feature request
- Improved parsing of From: addresses Thanks to Mark Haidl
- Added $RECIPIENT and $SENDER tokens Thanks to Wayne Fathers for the feature request
<<lessVacation is loosely based on the vacation program by Larry Wall and Tom Christiansen.
I decided to write a new vacation clone since I could not find a version that would work reliably under Red Hat Linux 6.0. I finally found the old Perl version by Larry Wall and Tom Christiansen -- it was the most full-featured, and it almost worked. So, I decided to rewrite it. You may find the original version as "vacation.orig" in this distribution.
Since then, several others have released similar implementations and updates to vacation. While there is no longer a gap to fill, this version still provides a few unique features, flexibility, and portability.
You may also find a simpler auto-responder script in this distribution called mail-responder.pl. This precursor to vacation may be more appropriate at the system level (e.g., called from the aliases file) as compared to vacation which is designed for individual users.
Enhancements:
- Added a Vacation tag to From: addresses
- Added a routine to properly generate date headers (long overdue!) Thanks to Milivoj Ivkovic for the example
- Added a flag to only respond to specified senders Thanks to Jeff Chan for the feature request
- Improved parsing of From: addresses Thanks to Mark Haidl
- Added $RECIPIENT and $SENDER tokens Thanks to Wayne Fathers for the feature request
Download (0.037MB)
Added: 2005-12-20 License: Artistic License Price:
1404 downloads
EMailRobot 0.3
EMailRobot is a simple object-oriented framework for developing email auto-responders. more>>
EMailRobot is a simple object-oriented framework for developing email auto-responders.
It performs actions based on parameters extracted from received email bodies and generates answer emails.
Enhancements:
- Minor fixes were made and documentation and installation notes were added.
<<lessIt performs actions based on parameters extracted from received email bodies and generates answer emails.
Enhancements:
- Minor fixes were made and documentation and installation notes were added.
Download (0.011MB)
Added: 2005-08-24 License: BSD License Price:
1522 downloads
GNUPanel 0.2.0
GNUPanel provides a Web hosting control panel for Debian. more>>
GNUPanel provides a Web hosting control panel for Debian.
It is specially developed to run on Debian and is a simple and easy to use administration tool to manage a hosting account. GNUPanel provides three web interfaces with SSL access at user, reseller and administrator level.
With them you can add mail addresses and FTP accounts, protect directories, redirect subdomains, etc.
Main features:
- Subdomains administration
- Parked domains
- Mail accounts and redirections
- FTP accounts
- Directories protection
- Mail lists
- Web administration for PostgreSQL and MySQL databases
- Bandwidth and disk space control
- Web statistics
- Support tickets
- English and spanish languages
- Paypal payments support
- Backup tool
Software and daemons provided:
- Apache 2
- PowerDNS
- Proftpd
- Postfix
- Courier-pop, Courier-pop-ssl
- Courier-imap, Courier-imap-ssl
- Courier-authdaemon
- Squirrelmail
- Mailman
- PHP 5
- PostgreSQL 8.1
- MySQL 5
- PHPPgadmin
- PHPMyadmin
- Webalizer statistics
Enhancements:
- This release has a better user interface, and the ability to create auto-responders has been added.
- All users can now access a mail panel that allows them to create auto-responders, redirections, and change passwords for their mail accounts.
- This mail panel can be found at http://gnupanel.domain/mail.
<<lessIt is specially developed to run on Debian and is a simple and easy to use administration tool to manage a hosting account. GNUPanel provides three web interfaces with SSL access at user, reseller and administrator level.
With them you can add mail addresses and FTP accounts, protect directories, redirect subdomains, etc.
Main features:
- Subdomains administration
- Parked domains
- Mail accounts and redirections
- FTP accounts
- Directories protection
- Mail lists
- Web administration for PostgreSQL and MySQL databases
- Bandwidth and disk space control
- Web statistics
- Support tickets
- English and spanish languages
- Paypal payments support
- Backup tool
Software and daemons provided:
- Apache 2
- PowerDNS
- Proftpd
- Postfix
- Courier-pop, Courier-pop-ssl
- Courier-imap, Courier-imap-ssl
- Courier-authdaemon
- Squirrelmail
- Mailman
- PHP 5
- PostgreSQL 8.1
- MySQL 5
- PHPPgadmin
- PHPMyadmin
- Webalizer statistics
Enhancements:
- This release has a better user interface, and the ability to create auto-responders has been added.
- All users can now access a mail panel that allows them to create auto-responders, redirections, and change passwords for their mail accounts.
- This mail panel can be found at http://gnupanel.domain/mail.
Download (2.8MB)
Added: 2007-04-18 License: GPL (GNU General Public License) Price:
919 downloads
Jabber::RPC::HTTPgate 0.01
Jabber::RPC::HTTPgate is an HTTP gateway for Jabber-RPC / XML-RPC. more>>
Jabber::RPC::HTTPgate is an HTTP gateway for Jabber-RPC / XML-RPC.
SYNOPSIS
use Jabber::RPC::HTTPgate;
my $gw = new Jabber::RPC::HTTPgate(
server => myserver.org:5701,
identauth => jrpchttp.localhost:secret,
httpcomp => http,
);
$gw->start;
Jabber::RPC::HTTPgate is an experimental gateway that provides a conduit service between traditional (HTTP-transported) XML-RPC encoded requests/responses and Jabber-RPC (XML-RPC encoded requests/responses transported over Jabber).
The idea is that you can start a gateway, that connects as a component to the backbone of a Jabber server, and it proxies Jabber-RPC to HTTP-based XML-RPC endpoints, and vice versa. That means that your Jabber-RPC client can not only make XML-RPC encoded calls to a Jabber-RPC endpoint but also to a traditional HTTP-based XML-RPC endpoint. And it also means that your traditional HTTP-based XML-RPC client can make XML-RPC encoded calls to a Jabber-RPC endpoint.
Jabber -> HTTP
When you create and start up a gateway, it listens for Jabber-RPC calls, just like a normal Jabber-RPC responder. On receipt of such a call, the gateway creates an HTTP request and sends this request on to the HTTP-based XML-RPC endpoint. The response received back from this HTTP call is relayed back to the original Jabber-RPC requester.
While a Jabber-RPC endpoint address is a Jabber ID (JID), an traditional XML-RPC endpoint address is a URL. So all the Jabber-RPC client needs to do is specify the URL in the resource part of the gateways endpoint JID.
HTTP -> Jabber
As well as listening for Jabber-RPC calls, a gateway will also service incoming HTTP requests that can be made to the HTTP component that this gateway uses. The HTTP component (called simply http) can be downloaded from the normal Jabber software repository.
On receipt of an HTTP request (passed to it by the HTTP component), the gateway creates a Jabber-RPC request containing the XML-RPC encoded payload, and sends it on to the Jabber-RPC responder endpoint. This endpoint is identified (via a JID) by the path part of the URL used in the call by the traditional client.
<<lessSYNOPSIS
use Jabber::RPC::HTTPgate;
my $gw = new Jabber::RPC::HTTPgate(
server => myserver.org:5701,
identauth => jrpchttp.localhost:secret,
httpcomp => http,
);
$gw->start;
Jabber::RPC::HTTPgate is an experimental gateway that provides a conduit service between traditional (HTTP-transported) XML-RPC encoded requests/responses and Jabber-RPC (XML-RPC encoded requests/responses transported over Jabber).
The idea is that you can start a gateway, that connects as a component to the backbone of a Jabber server, and it proxies Jabber-RPC to HTTP-based XML-RPC endpoints, and vice versa. That means that your Jabber-RPC client can not only make XML-RPC encoded calls to a Jabber-RPC endpoint but also to a traditional HTTP-based XML-RPC endpoint. And it also means that your traditional HTTP-based XML-RPC client can make XML-RPC encoded calls to a Jabber-RPC endpoint.
Jabber -> HTTP
When you create and start up a gateway, it listens for Jabber-RPC calls, just like a normal Jabber-RPC responder. On receipt of such a call, the gateway creates an HTTP request and sends this request on to the HTTP-based XML-RPC endpoint. The response received back from this HTTP call is relayed back to the original Jabber-RPC requester.
While a Jabber-RPC endpoint address is a Jabber ID (JID), an traditional XML-RPC endpoint address is a URL. So all the Jabber-RPC client needs to do is specify the URL in the resource part of the gateways endpoint JID.
HTTP -> Jabber
As well as listening for Jabber-RPC calls, a gateway will also service incoming HTTP requests that can be made to the HTTP component that this gateway uses. The HTTP component (called simply http) can be downloaded from the normal Jabber software repository.
On receipt of an HTTP request (passed to it by the HTTP component), the gateway creates a Jabber-RPC request containing the XML-RPC encoded payload, and sends it on to the Jabber-RPC responder endpoint. This endpoint is identified (via a JID) by the path part of the URL used in the call by the traditional client.
Download (0.009MB)
Added: 2007-03-21 License: Perl Artistic License Price:
947 downloads
mdnsd 0.7
mdnsd is a very lightweight, simple, portable, and easy to integrate open source implementation of Multicast DNS. more>>
"mdnsd" is a very lightweight, simple, portable, and easy to integrate open source implementation of Multicast DNS (part of Zeroconf, also called Rendezvous by Apple) for developers. It supports both acting as a Query and a Responder, allowing any software to participate fully on the .localnetwork just by including a few files and calling a few functions. All of the complexity of handling the Multicast DNS retransmit timing, duplicate
suppression, probing, conflict detection, and other facets of the DNS protocol is hidden behind a very simple and very easy to use interface, described in the header file. The single small c source file has almost no dependencies, and is portable to almost any embedded platform. Multiple example applications and usages are included in the download, including a simple very persistent query browser and a tool to advertise local web sites.
The code is licensed under both the GPL and BSD licenses, for use in any free software or commercial application. If there is a licensing need not covered by either of those, alternative licensing is available upon request.
<<lesssuppression, probing, conflict detection, and other facets of the DNS protocol is hidden behind a very simple and very easy to use interface, described in the header file. The single small c source file has almost no dependencies, and is portable to almost any embedded platform. Multiple example applications and usages are included in the download, including a simple very persistent query browser and a tool to advertise local web sites.
The code is licensed under both the GPL and BSD licenses, for use in any free software or commercial application. If there is a licensing need not covered by either of those, alternative licensing is available upon request.
Download (0.014MB)
Added: 2006-07-03 License: BSD License Price:
1216 downloads
mdns-scan 0.4
mdns-scan is a tool for scanning for mDNS/DNS-SD published services on the local network. more>>
mdns-scan is a tool for scanning for mDNS/DNS-SD published services on the local network. mdns-scan issues a mDNS PTR query to the special RR _services._dns-sd._udp.local for retrieving a list of all currently registered services on the local link.
mdns-scan is not a good mDNS citizen since it queries continuously for services and doesnt implement features like Duplicate Suppression. It is intended for usage as a debugging tool only.
mdns-scan is incomplete since it doesnt resolve mDNS services for you - it just dumps their PTR RRs. To understand these records you need minimal knowledge of DNS-SD and how it works.
mdns-scan does not terminate on its own behalf. It scans for services continuously until the user kills it by pressing C-c.
mdns-scan does not rely on a local mDNS responder daemon. It has no dependencies besides the GNU libc. It has been tested on Linux only.
mdns-scan does NOT scan for local mDNS enabled hosts or A/AAAA RRs, it scans for DNS-SD registered services, nothing else.
Enhancements:
- Add man pages
- Improvements to the Debianization
<<lessmdns-scan is not a good mDNS citizen since it queries continuously for services and doesnt implement features like Duplicate Suppression. It is intended for usage as a debugging tool only.
mdns-scan is incomplete since it doesnt resolve mDNS services for you - it just dumps their PTR RRs. To understand these records you need minimal knowledge of DNS-SD and how it works.
mdns-scan does not terminate on its own behalf. It scans for services continuously until the user kills it by pressing C-c.
mdns-scan does not rely on a local mDNS responder daemon. It has no dependencies besides the GNU libc. It has been tested on Linux only.
mdns-scan does NOT scan for local mDNS enabled hosts or A/AAAA RRs, it scans for DNS-SD registered services, nothing else.
Enhancements:
- Add man pages
- Improvements to the Debianization
Download (0.016MB)
Added: 2006-05-17 License: GPL (GNU General Public License) Price:
1257 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above responder search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed