Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.473.001 Times

Winsock Error freeware
Filter: All | Freeware | Demo
 

Winsock Error

< 1 2 3 4 5 
Added: January 20, 2010 | Visits: 797

RPC::pClient RPC::pClient is a Perl extension for writing pRPC clients. SYNOPSIS use RPC::pClient; $sock = IO::Socket::INET->new(PeerAddr => joes.host.de, PeerPort => 2570, Proto => tcp); $connection = new RPC::pClient(sock => $sock, application => My App, version => 1.0, user => joe, password...



Platforms: *nix

License: Freeware Size: 19.46 KB Download (97): RPC::pClient Download

Added: September 10, 2010 | Visits: 960

Audio::MadJACK Audio::MadJACK is a Perl module to talk to MadJACK server using Object Oriented Perl. SYNOPSIS use Audio::MadJACK; my $mj = new Audio::MadJACK( osc.udp://madjack.example.net:4444/ ); $mj->load( Playlist_A/mymusic.mp3 ); $mj->play(); The Audio::MadJACK module uses Net::LibLO to talk to a...





Platforms: *nix

License: Freeware Size: 5.12 KB Download (97): Audio::MadJACK Download

Added: August 27, 2010 | Visits: 783

Luka Luka is an exception handling and reporting framework. SYNOPSIS use Error qw(:try); use Luka; try { $ftp->login("someuser", "somepass") || throw Luka::Exception::External ( error => $ftp->message . $@, id => "login", context => "FTP error: couldnt login", severity => 3, args =>...


Platforms: *nix

License: Freeware Size: 36.86 KB Download (97): Luka Download

Added: March 09, 2010 | Visits: 1.045

Apache::ErrorControl Apache::ErrorControl Perl module is an Apache Handler for Templating Apache Error Documents. This mod_perl content handler will make templating your ErrorDocument pages easy. Basically you add a couple of entries to your httpd.conf file restart apache, make your template and your cruising....


Platforms: *nix

License: Freeware Size: 10.24 KB Download (96): Apache::ErrorControl Download

Added: January 25, 2010 | Visits: 585

UErrorMessage UErrorMessage is a collection of error message functions for Metrowerks PowerPlant. It enables you to easily display alerts and includes support for the standard Appearance Manager alert function. It has been tested with CodeWarrior Pro 5 and PowerPlant 2.0. This source code may be used without...


Platforms: Mac

License: Freeware Size: 36 KB Download (96): UErrorMessage Download

Added: September 20, 2010 | Visits: 980

Data::CGIForm Data::CGIForm is a Perl module with form data interface. Data::CGIForm is yet another way to parse and handle CGI form data. The main motivation behind this module was a simple specification based validator that could handle multiple values. You probably dont want to use this module....


Platforms: *nix

License: Freeware Size: 12.29 KB Download (95): Data::CGIForm Download

Added: November 18, 2010 | Visits: 1.122

Net::DBus::Error Net::DBus::Error is a Perl module with error details for remote method invocation. SYNOPSIS package Music::Player::UnknownFormat; use base qw(Net::DBus::Error); # Define an error type for unknown track encoding type # for a music player service sub new { my $proto = shift; my $class =...


Platforms: *nix

License: Freeware Size: 94.21 KB Download (94): Net::DBus::Error Download

Added: May 22, 2010 | Visits: 840

mod_log50x mod_log50x Apache module logs error 500 - 509 to logfiles. It enables you to log all error 50x status responses to logfiles. How: 1. Either compile a apache module from the sources, or get a binary release. 2. Copy the module in the modules directory of your apache server. 3. Modify your...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (94): mod_log50x Download

Added: September 23, 2010 | Visits: 783

Variable::Strongly::Typed Variable::Strongly::Typed is a Perl module to let some variables be strongly typed. SYNOPSIS use Variable::Strongly::Typed; my $int :TYPE(int); # must have an int value my $float :TYPE(float); # must have a float value my $string :TYPE(string); # must not be a reference my $file...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (94): Variable::Strongly::Typed Download

Added: September 19, 2010 | Visits: 810

WebService::TicketAuth WebService::TicketAuth is a ticket-based authentication module for SOAP services. SYNOPSIS @WebService::MyService::ISA = qw(WebService::TicketAuth); WebService::TicketAuth is an authentication system for SOAP-based web services, that provides a signature token (like a cookie) to the client...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (94): WebService::TicketAuth Download

Added: July 08, 2010 | Visits: 871

HTTPClient This package provides a complete http client library. It currently implements most of the relevant parts of the HTTP/1.0 and HTTP/1.1 protocols, including the request methods HEAD, GET, POST and PUT, and automatic handling of authorization, redirection requests, and cookies. Furthermore the...


Platforms: *nix

License: Freeware Size: 532.48 KB Download (94): HTTPClient Download

Released: September 03, 2012  |  Added: September 22, 2012 | Visits: 1.053

Puran Utilities A set of more than 20 software utilities including but not limited to the ones that can help you get the best performance out of your computer. It also provides an automatic and a one click solution to keep your computer clean and error free. It includes Puran Defrag, Disk Check, Uninstaller...


Platforms: Windows

License: Freeware Size: 8.81 MB Download (91): Puran Utilities Download

Added: April 19, 2010 | Visits: 825

Number::WithError Number::WithError is a Perl module that contains numbers with error propagation and scientific rounding. SYNOPSIS use Number::WithError; my $num = Number::WithError->new(5.647, 0.31); print $num . "n"; # prints 5.65e+00 +/- 3.1e-01 # (I.e. it automatically does scientific rounding) my...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (90): Number::WithError Download

Added: November 03, 2010 | Visits: 963

Hydrate Hydrate is a Java tool that provides for fast efficient and error-free transformation of data between three different representations: relational databases, objects in an object-oriented programming language and extended markup language (XML). Each of these representations has its strengths and...


Platforms: *nix

License: Freeware Size: 7 MB Download (90): Hydrate Download

Added: February 11, 2010 | Visits: 844

Class::ParmList Class::ParmList is a Perl module with methods for processing named parameter lists. SYNOPSIS use Class::ParmList qw(simple_parms parse_parms); $thingy->some_method({ -bgcolor => #ff0000, -textcolor => #000000 }); sub some_method { my ($self) = shift; my ($parm_ref) = @_; my $parms...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (89): Class::ParmList Download

Added: May 04, 2010 | Visits: 675

SimpleCDB SimpleCDB - A Perl-only Constant Database. SYNOPSIS use SimpleCDB; # writer # - tie blocks until DB is available (exclusive), or timeout tie %h, SimpleCDB, db, O_WRONLY or die "tie failed: $SimpleCDB::ERRORn"; $h{$k} = $v; die "store: $SimpleCDB::ERROR" if $SimpleCDB::ERROR; untie %h;...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (89): SimpleCDB Download

Added: November 18, 2010 | Visits: 932

remake remake is a modern version of GNU make utility that adds improved error reporting, the ability to trace execution in a comprehensible way, and a debugger. The debugger lets you set breakpoints on targets, show and set variables, inspect target descriptions, and see the target call stack. If you...


Platforms: *nix

License: Freeware Download (89): remake Download

Added: April 15, 2010 | Visits: 841

Exception::Class::TryCatch Exception::Class::TryCatch is a syntactic try/catch sugar for use with Exception::Class. SYNOPSIS use Exception::Class::TryCatch; # simple usage of catch() eval { Exception::Class::Base->throw(error) }; catch my $err and warn $err->error; # catching only certain types or else...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): Exception::Class::TryCatch Download

Added: August 07, 2010 | Visits: 881

Gtk2::Ex::Dialogs::ErrorMsg Gtk2::Ex::Dialogs::ErrorMsg provides a simple error message dialog. SYNOPSIS use Gtk2::Ex::Dialogs::ErrorMsg ( destroy_with_parent => TRUE, modal => TRUE, no_separator => FALSE ); # do some stuff like creating your apps main $window then, # to ensure that all messages use the right...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (87): Gtk2::Ex::Dialogs::ErrorMsg Download

Added: February 02, 2010 | Visits: 704

libexecstream Libexecstream is a C++ library that allows you to run a child process and have its input, output and error avaliable as standard C++ streams..


Platforms: *nix

License: Freeware Size: 30.72 KB Download (87): libexecstream Download

< 1 2 3 4 5