modem
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 155
Modem.pl 0.15
Modem.pl is a small script that scrapes the web interface of a Motorola SURFboard cable modem for various status conditions more>>
Modem.pl is a small script that scrapes the web interface of a Motorola SURFboard cable modem for various status conditions like signal strength and signal to noise.
The results are sent to STDOUT where they can be easily piped into a log file. The modem values are also checked for reasonable operating ranges.
If the modem values are outside of reasonable operating ranges, results are also sent to STDERR. When run from a cron job, modem.pl can be used to monitor the condition of the cable service and notify someone before conditions cause service interruptions.
Main features:
- Captures operating conditions of a Motorola SURFboard cable modem.
- Runs interactively or from a scheduled job (cron)
- Output is formatted with a standard log time stamp when scheduled.
- Checks modem values for reasonable operating ranges.
- Errors and warnings are duplicated to STDERR.
<<lessThe results are sent to STDOUT where they can be easily piped into a log file. The modem values are also checked for reasonable operating ranges.
If the modem values are outside of reasonable operating ranges, results are also sent to STDERR. When run from a cron job, modem.pl can be used to monitor the condition of the cable service and notify someone before conditions cause service interruptions.
Main features:
- Captures operating conditions of a Motorola SURFboard cable modem.
- Runs interactively or from a scheduled job (cron)
- Output is formatted with a standard log time stamp when scheduled.
- Checks modem values for reasonable operating ranges.
- Errors and warnings are duplicated to STDERR.
Download (0.011MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
967 downloads
kmodemlights 0.8
This is a applet for the KDE-panel kicker, that watches a modem and allows to connect and disconnect the modem. more>>
kmodemlights is a applet for the KDE-panel kicker, that watches a modem and allows to connect and disconnect the modem. It is "inspired" by modemlights (read: its a clone).
Main features:
- the connection-state on the button (offline - awaiting connection - online)
- two LEDs showing activity for Rx and Tx, much like a modems lights (hence the name). The update-frequency is configurable from 2 to 5 (default is 5).
- a graph displaying Rx-volume and Tx-volume (updated every 2 seconds).
- The bytes received per second (updated every second), as numerical value.
- The time since the modem is online.
The colors of the lights, button-icons (await- and online- state) and the graph is configurable, and the icon that shows the state of connection comes in three sizes.
kmodemlights still has problems operating in a vertical panel!
Enhancements:
- configurable shortcut to go on- or offline
<<lessMain features:
- the connection-state on the button (offline - awaiting connection - online)
- two LEDs showing activity for Rx and Tx, much like a modems lights (hence the name). The update-frequency is configurable from 2 to 5 (default is 5).
- a graph displaying Rx-volume and Tx-volume (updated every 2 seconds).
- The bytes received per second (updated every second), as numerical value.
- The time since the modem is online.
The colors of the lights, button-icons (await- and online- state) and the graph is configurable, and the icon that shows the state of connection comes in three sizes.
kmodemlights still has problems operating in a vertical panel!
Enhancements:
- configurable shortcut to go on- or offline
Download (0.46MB)
Added: 2006-04-10 License: GPL (GNU General Public License) Price:
1292 downloads
Device::Modem 1.47
Device::Modem is a Perl extension to talk to modem devices connected via serial port. more>>
Device::Modem is a Perl extension created to talk to modem devices connected via serial port.
WARNING
This is BETA software, so use it at your own risk, and without ANY warranty! Have fun.
SYNOPSIS
use Device::Modem;
my $modem = new Device::Modem( port => /dev/ttyS1 );
if( $modem->connect( baudrate => 9600 ) ) {
print "connected!n";
} else {
print "sorry, no connection with serial port!n";
}
$modem->attention(); # send `attention sequence (+++)
($ok, $answer) = $modem->dial(02270469012); # dial phone number
$ok = $modem->dial(3); # 1-digit parameter = dial number stored in memory 3
$modem->echo(1); # enable local echo (0 to disable)
$modem->offhook(); # Take off hook (ready to dial)
$modem->hangup(); # returns modem answer
$modem->is_active(); # Tests whether modem device is active or not
# So far it works for modem OFF/ modem ON condition
$modem->reset(); # hangup + attention + restore setting 0 (Z0)
$modem->restore_factory_settings(); # Handle with care!
$modem->restore_factory_settings(1); # Same with preset profile 1 (can be 0 or 1)
$modem->send_init_string(); # Send initialization string
# Now this is fixed to AT H0 Z S7=45 S0=0 Q0 V1 E0 &C0 X4
# Get/Set value of S1 register
my $S1 = $modem->S_register(1);
my $S1 = $modem->S_register(1, 55); # Dont do that if you definitely dont know!
# Get status of managed signals (CTS, DSR, RLSD, RING)
my %signal = $modem->status();
if( $signal{DSR} ) { print "Data Set Ready signal active!n"; }
# Stores this number in modem memory number 3
$modem->store_number(3, 01005552817);
$modem->repeat(); # Repeat last command
$modem->verbose(1); # Normal text responses (0=numeric codes)
# Some raw AT commands
$modem->atsend( ATH0 );
print $modem->answer();
$modem->atsend( ATDT01234567 . Device::Modem::CR );
print $modem->answer();
Device::Modem class implements basic AT (Hayes) compliant device abstraction. It can be inherited by sub classes (as Device::Gsm), which are based on serial connections.
<<lessWARNING
This is BETA software, so use it at your own risk, and without ANY warranty! Have fun.
SYNOPSIS
use Device::Modem;
my $modem = new Device::Modem( port => /dev/ttyS1 );
if( $modem->connect( baudrate => 9600 ) ) {
print "connected!n";
} else {
print "sorry, no connection with serial port!n";
}
$modem->attention(); # send `attention sequence (+++)
($ok, $answer) = $modem->dial(02270469012); # dial phone number
$ok = $modem->dial(3); # 1-digit parameter = dial number stored in memory 3
$modem->echo(1); # enable local echo (0 to disable)
$modem->offhook(); # Take off hook (ready to dial)
$modem->hangup(); # returns modem answer
$modem->is_active(); # Tests whether modem device is active or not
# So far it works for modem OFF/ modem ON condition
$modem->reset(); # hangup + attention + restore setting 0 (Z0)
$modem->restore_factory_settings(); # Handle with care!
$modem->restore_factory_settings(1); # Same with preset profile 1 (can be 0 or 1)
$modem->send_init_string(); # Send initialization string
# Now this is fixed to AT H0 Z S7=45 S0=0 Q0 V1 E0 &C0 X4
# Get/Set value of S1 register
my $S1 = $modem->S_register(1);
my $S1 = $modem->S_register(1, 55); # Dont do that if you definitely dont know!
# Get status of managed signals (CTS, DSR, RLSD, RING)
my %signal = $modem->status();
if( $signal{DSR} ) { print "Data Set Ready signal active!n"; }
# Stores this number in modem memory number 3
$modem->store_number(3, 01005552817);
$modem->repeat(); # Repeat last command
$modem->verbose(1); # Normal text responses (0=numeric codes)
# Some raw AT commands
$modem->atsend( ATH0 );
print $modem->answer();
$modem->atsend( ATDT01234567 . Device::Modem::CR );
print $modem->answer();
Device::Modem class implements basic AT (Hayes) compliant device abstraction. It can be inherited by sub classes (as Device::Gsm), which are based on serial connections.
Download (0.046MB)
Added: 2007-04-17 License: Perl Artistic License Price:
929 downloads
Modem::Vgetty 0.03
Modem::Vgetty is a Perl interface to vgetty(8). more>>
Modem::Vgetty is a Perl interface to vgetty(8).
SYNOPSIS
use Modem::Vgetty;
$v = new Modem::Vgetty;
$string = $v->receive;
$v->send($string);
$string = $v->expect($str1, $str2, ...);
$v->waitfor($string);
$rv = $v->chat($expect1, $send1, $expect2, $send2, ...);
$ttyname = $v->getty;
$rv = $v->device($dev_type);
$rv = $v->autostop($bool);
$rv = $v->modem_type; # !!! see the docs below.
$rv = $v->beep($freq, $len);
$rv = $v->dial($number);
$rv = $v->play($filename);
$rv = $v->record($filename);
$rv = $v->wait($seconds);
$rv = $v->play_and_wait($filename);
$v->stop;
$v->add_handler($event, $handler_name, $handler);
$v->del_handler($event, $handler_name);
$v->enable_events;
$v->disable_events;
$number = $v->readnum($message, $tmout, $repeat);
$v->shutdown;
Modem::Vgetty is an encapsulation object for writing applications for voice modems using the vgetty(8) or vm(8) package. The answering machines and sofisticated voice applications can be written using this module.
<<lessSYNOPSIS
use Modem::Vgetty;
$v = new Modem::Vgetty;
$string = $v->receive;
$v->send($string);
$string = $v->expect($str1, $str2, ...);
$v->waitfor($string);
$rv = $v->chat($expect1, $send1, $expect2, $send2, ...);
$ttyname = $v->getty;
$rv = $v->device($dev_type);
$rv = $v->autostop($bool);
$rv = $v->modem_type; # !!! see the docs below.
$rv = $v->beep($freq, $len);
$rv = $v->dial($number);
$rv = $v->play($filename);
$rv = $v->record($filename);
$rv = $v->wait($seconds);
$rv = $v->play_and_wait($filename);
$v->stop;
$v->add_handler($event, $handler_name, $handler);
$v->del_handler($event, $handler_name);
$v->enable_events;
$v->disable_events;
$number = $v->readnum($message, $tmout, $repeat);
$v->shutdown;
Modem::Vgetty is an encapsulation object for writing applications for voice modems using the vgetty(8) or vm(8) package. The answering machines and sofisticated voice applications can be written using this module.
Download (0.011MB)
Added: 2007-04-17 License: Perl Artistic License Price:
924 downloads
Phone for voice modem 0.1
Phone for voice modem is only a simple wrapper for the chat program, which allows you to call some numbers. more>>
Phone for voice modem is only a simple wrapper for the chat program, which allows you to call some numbers on the hayes-compatible modem.
<<less Download (0.045MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1051 downloads
Cable Modem Counter 0.31
Cable Modem Counter is a cable modem (or any Ethernet connection) IP byte logger. more>>
Cable Modem Counter is a cable modem (or any Ethernet connection) IP byte logger. It is not a packet sniffer, it just gathers network statistics.
It is composed of two parts:
A daemon, which logs all the incoming/outgoing connections and creates pairs of source/destination IP addresses with a byte counter and direction of traffic (inbound or outbound) attached. It stores it periodically on a file (or files).It also accepts network connections to gather the statistics and can also run users scripts which can send commands to the daemon and receive information.
An user application, which can be run on console or X (wmaker/kde bar?) and connects to the daemon and collects the statistics, and then making the separation between national/international , inbound/outbound , etc (not done yet)
<<lessIt is composed of two parts:
A daemon, which logs all the incoming/outgoing connections and creates pairs of source/destination IP addresses with a byte counter and direction of traffic (inbound or outbound) attached. It stores it periodically on a file (or files).It also accepts network connections to gather the statistics and can also run users scripts which can send commands to the daemon and receive information.
An user application, which can be run on console or X (wmaker/kde bar?) and connects to the daemon and collects the statistics, and then making the separation between national/international , inbound/outbound , etc (not done yet)
Download (0.10MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1213 downloads
slmodem 2.9.11-20051101
slmodem is a SmartLink soft modem for Linux. more>>
slmodem is a SmartLink soft modem for Linux. slmodem project provides a full-featured 56K voice fax modem.
This is implemented as a generic application (slmodemd) and a set of hardware specific kernel-space drivers (slamr and slusb).
ALSA modem drivers may be used instead of proprietary ones.
Main features:
- Modem: V.92, V.90, V.34, V.32bis, V.32, V.23, V.22, V.21, Bell 103/212.
- Flow control: V.42.
- Compression: V.44, V.42bis.
- Fax: Class 1.
- Voice: V253 like modem.
- Multiple modems are supported.
Supported Hardware:
HAMR5600 based AMR/CNR/MDC/ACR modem cards on the following Southbridge chips:
- Intel ICH0,ICH2, ICH3, ICH4
- Via 686A, 686B, 8231, 8233
- SiS 630
- ALI 1535.
- SmartPCI56/561/562/563 based PCI modem cards.
- SmartUSB56 based USB modem.
Enhancements:
- This release includes some hardware compatibility fixes and adds support for GCC 4 builds.
<<lessThis is implemented as a generic application (slmodemd) and a set of hardware specific kernel-space drivers (slamr and slusb).
ALSA modem drivers may be used instead of proprietary ones.
Main features:
- Modem: V.92, V.90, V.34, V.32bis, V.32, V.23, V.22, V.21, Bell 103/212.
- Flow control: V.42.
- Compression: V.44, V.42bis.
- Fax: Class 1.
- Voice: V253 like modem.
- Multiple modems are supported.
Supported Hardware:
HAMR5600 based AMR/CNR/MDC/ACR modem cards on the following Southbridge chips:
- Intel ICH0,ICH2, ICH3, ICH4
- Via 686A, 686B, 8231, 8233
- SiS 630
- ALI 1535.
- SmartPCI56/561/562/563 based PCI modem cards.
- SmartUSB56 based USB modem.
Enhancements:
- This release includes some hardware compatibility fixes and adds support for GCC 4 builds.
Download (0.81MB)
Added: 2006-01-09 License: MIT/X Consortium License Price:
1383 downloads
dterm 0.1
dterm application is a simple terminal emulator, which doesnt actually emulate any particular terminal. more>>
dterm application is a simple terminal emulator, which doesnt actually emulate any particular terminal. Mainly, it is designed for use with xterm and friends, which already do a perfectly good emulation, and therefore dont need any special help; dterm simply provides a means by which keystrokes are forwarded to the serial line, and data forwarded from the serial line appears on the terminal.
Running dterm
dterm is invoked thusly:
dterm [options|device ...]
dterm attempts to read the file ~/.dtermrc for options; if this doesnt exist, it tries /etc/dtermrc. Then it parses the options passed on the command line.
The options read should include a device name, e.g "ttyS0" or "ttyd0" for the first serial port on a Linux or FreeBSD system respectively.
Once started, dterm can be got into command mode using Ctrl/]. Press enter once from command mode to get back into conversational mode. (The command character can be changed with the esc= option, e.g. esc=p to use Ctrl/P instead of Ctrl/].)
Options:
The following options can be used from command mode
300, 1200, 9600 etc: Set speed, default 9600.
5, 6, 7, 8: Set bits per character, default 8.
1, 2: Set number of stop bits, default 1.
e, o, n, m, s: Set parity to even, odd, none, mark or space, default none.
cts, nocts: Enable / disable CTS flow control, default nocts.
xon, noxon: Enable / disable XON/XOFF flow control, default noxon.
modem: Enable / disable modem control (hang up modem on exit, exit if modem hangs up), default nomodem.
bs, nobs: Enable / disable mapping of Delete to Backspace, default nobs.
del, nodel: Enable / disable mapping of Backspace to Delete, default nodel.
maplf, nomaplf: Enable / disable mapping of LF to CR, default nomaplf.
igncr, noigncr: Ignore / output carriage returns, default noigncr.
crlf, nocrlf: Enable / disable sending LF after each CR, default nocrlf.
b: Send a 500 ms break.
dtr, nodtr: Raise / lower DTR, default dtr.
rts, norts: Raise / lower RTS, default rts.
d, r: Toggle DTR / RTS.
esc= : Set command mode character to Ctrl/ (default ])
@ : Read and process configuration from .
! : Execute shell command
show: Display current configuration and modem status.
help, h, ?: Display a summary of commands.
version: Display version, copyright and warranty information.
quit, q: Exit
Examples:
Connect via ttyS1 to a system running at 2400 bps, 7 bits even parity:
dterm ttyS1 2400 7 e
Send a break in a running session:
^]
dterm> b
dterm>
<<lessRunning dterm
dterm is invoked thusly:
dterm [options|device ...]
dterm attempts to read the file ~/.dtermrc for options; if this doesnt exist, it tries /etc/dtermrc. Then it parses the options passed on the command line.
The options read should include a device name, e.g "ttyS0" or "ttyd0" for the first serial port on a Linux or FreeBSD system respectively.
Once started, dterm can be got into command mode using Ctrl/]. Press enter once from command mode to get back into conversational mode. (The command character can be changed with the esc= option, e.g. esc=p to use Ctrl/P instead of Ctrl/].)
Options:
The following options can be used from command mode
300, 1200, 9600 etc: Set speed, default 9600.
5, 6, 7, 8: Set bits per character, default 8.
1, 2: Set number of stop bits, default 1.
e, o, n, m, s: Set parity to even, odd, none, mark or space, default none.
cts, nocts: Enable / disable CTS flow control, default nocts.
xon, noxon: Enable / disable XON/XOFF flow control, default noxon.
modem: Enable / disable modem control (hang up modem on exit, exit if modem hangs up), default nomodem.
bs, nobs: Enable / disable mapping of Delete to Backspace, default nobs.
del, nodel: Enable / disable mapping of Backspace to Delete, default nodel.
maplf, nomaplf: Enable / disable mapping of LF to CR, default nomaplf.
igncr, noigncr: Ignore / output carriage returns, default noigncr.
crlf, nocrlf: Enable / disable sending LF after each CR, default nocrlf.
b: Send a 500 ms break.
dtr, nodtr: Raise / lower DTR, default dtr.
rts, norts: Raise / lower RTS, default rts.
d, r: Toggle DTR / RTS.
esc= : Set command mode character to Ctrl/ (default ])
@ : Read and process configuration from .
! : Execute shell command
show: Display current configuration and modem status.
help, h, ?: Display a summary of commands.
version: Display version, copyright and warranty information.
quit, q: Exit
Examples:
Connect via ttyS1 to a system running at 2400 bps, 7 bits even parity:
dterm ttyS1 2400 7 e
Send a break in a running session:
^]
dterm> b
dterm>
Download (0.014MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
984 downloads
mod_bwshare 0.1.9
mod_bwshare is a bandwidth throttling and monitoring per client IP address. more>>
mod_bwshare is a bandwidth throttling and monitoring per client IP address.
The mod_bwshare module accepts or rejects HTTP requests from each client IP address based on past downloads by that client IP address.
If the HTTP clients download rate exceeds specified levels, the reponse to the HTTP client is an HTML warning message.
A human browser will see a warning message indicating how long to wait.
Automatic rampant downloaders will download large numbers of useless warning messages.
The original motivation for mod_bwshare was to prevent automatic download of all 900 MBytes of material on one of my web sites which was connected to a 33k modem, which would have taken several days if it had succeeded.
<<lessThe mod_bwshare module accepts or rejects HTTP requests from each client IP address based on past downloads by that client IP address.
If the HTTP clients download rate exceeds specified levels, the reponse to the HTTP client is an HTML warning message.
A human browser will see a warning message indicating how long to wait.
Automatic rampant downloaders will download large numbers of useless warning messages.
The original motivation for mod_bwshare was to prevent automatic download of all 900 MBytes of material on one of my web sites which was connected to a 33k modem, which would have taken several days if it had succeeded.
Download (0.063MB)
Added: 2006-05-23 License: Artistic License Price:
1250 downloads
MobileRemoteSE 0.1
MobileRemoteSE is a light (non-Java), serial-over-bluetooth-based remote control for Amarok. more>>
MobileRemoteSE is a light (non-Java), serial-over-bluetooth-based remote control for Amarok.
Uses the Sony Ericsson AT command set, and supports the following Sony Ericsson phone models: K750, W800, Z520, W550, W600, W900, W810, Z530, W300, K510, K310, W700, Z525, W710, Z550, Z558, K320
Main features:
- Appears under "Entertainment" menu on the phone.
- Supports Play/Pause, Next, Prev, Stop, Volume Up/Down operations from mobile phone.
- Displays the current running track on Amarok in the phone menu title.
- Since J2ME is not used (unlike some other alternatives), the remote control can be used while running some other application on non-multitasking models.
Instructions:
1) Bind /dev/rfcomm0 to the serial-over-bluetooth channel of your mobile. Please refer to your distro docs or howtos on the internet to find out how to do this.
2) Install Device::Modem package for Perl. You can either use your distro packages for this, or install through CPAN as:
cpan -i Device::Modem
3) Install and start script from Amarok.
<<lessUses the Sony Ericsson AT command set, and supports the following Sony Ericsson phone models: K750, W800, Z520, W550, W600, W900, W810, Z530, W300, K510, K310, W700, Z525, W710, Z550, Z558, K320
Main features:
- Appears under "Entertainment" menu on the phone.
- Supports Play/Pause, Next, Prev, Stop, Volume Up/Down operations from mobile phone.
- Displays the current running track on Amarok in the phone menu title.
- Since J2ME is not used (unlike some other alternatives), the remote control can be used while running some other application on non-multitasking models.
Instructions:
1) Bind /dev/rfcomm0 to the serial-over-bluetooth channel of your mobile. Please refer to your distro docs or howtos on the internet to find out how to do this.
2) Install Device::Modem package for Perl. You can either use your distro packages for this, or install through CPAN as:
cpan -i Device::Modem
3) Install and start script from Amarok.
Download (0.008MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1044 downloads
mod_hosts_access 1.0.0
mod_hosts_access is an Apache module which allows you to use the hosts.allow and hosts.deny files. more>>
mod_hosts_access is an Apache module which allows you to use the hosts.allow and hosts.deny files to configure access to your Apache webserver.
Main features:
- mod_hosts_access gives you a central location for your IP access rules for telnet, ftp, http, imap, etc. This is especially useful for a personal server (e.g. a cable modem running mod_roaming), that should not be accessible to the whole world.
- mod_hosts_access calls the functions in the TCP Wrapper library for maximum compatibility.
- mod_hosts_access can be installed as a DSO (Dynamic Shared Object) module.
<<lessMain features:
- mod_hosts_access gives you a central location for your IP access rules for telnet, ftp, http, imap, etc. This is especially useful for a personal server (e.g. a cable modem running mod_roaming), that should not be accessible to the whole world.
- mod_hosts_access calls the functions in the TCP Wrapper library for maximum compatibility.
- mod_hosts_access can be installed as a DSO (Dynamic Shared Object) module.
Download (0.004MB)
Added: 2006-05-12 License: BSD License Price:
1261 downloads
Data::ENAML 0.03
Data::ENAML is a Perl extension for ENAML data representation. more>>
Data::ENAML is a Perl extension for ENAML data representation.
SYNOPSIS
use Data::ENAML qw (serialize deserialize);
print serialize(login => {nick => Schop,
email => ariel@atheist.org.il,
tagline => If I had no modem I would not lose Regina});
$struct = deserialize(bad-nick: {nick: "c00l dewd" text: "spaces not allowed"});
ENAML stands for ENAML is Not A Markup Language. (And as we all know, Gnu is Not UNIX, Pine Is Not Email, Wine Is Not Emulator, Lame Aint Mp3 Encoder and so on).
ENAML was defined by Robey Pointer for use in Say2, check http://www.lag.net/say2.
<<lessSYNOPSIS
use Data::ENAML qw (serialize deserialize);
print serialize(login => {nick => Schop,
email => ariel@atheist.org.il,
tagline => If I had no modem I would not lose Regina});
$struct = deserialize(bad-nick: {nick: "c00l dewd" text: "spaces not allowed"});
ENAML stands for ENAML is Not A Markup Language. (And as we all know, Gnu is Not UNIX, Pine Is Not Email, Wine Is Not Emulator, Lame Aint Mp3 Encoder and so on).
ENAML was defined by Robey Pointer for use in Say2, check http://www.lag.net/say2.
Download (0.004MB)
Added: 2006-11-15 License: Perl Artistic License Price:
1073 downloads
iMaze 1.4
iMaze is a multiplayer, realtime, 3D, labyrinth run and shoot game. more>>
iMaze project is a multiplayer, realtime, 3D, labyrinth run and shoot game.
iMaze is a multi-player network action game for TCP/IP with 3D graphics under X11 in which players runs through a labyrinth, trying to shoot other players and computer-controlled ninjas without being shot by them.
It features a sophisticated, reliable network protocol which works even with SLIP connections over modems.
Its windows can be freely scaled to avoid speed drawbacks due to poor display performance.
Main features:
- sophisticated, reliable network protocol, works even with SLIP connections via modem
- windows can be freely scaled to avoid speed drawbacks due to poor display performance
- modular, portable source code
- scores
- extensive documentation (german)
<<lessiMaze is a multi-player network action game for TCP/IP with 3D graphics under X11 in which players runs through a labyrinth, trying to shoot other players and computer-controlled ninjas without being shot by them.
It features a sophisticated, reliable network protocol which works even with SLIP connections over modems.
Its windows can be freely scaled to avoid speed drawbacks due to poor display performance.
Main features:
- sophisticated, reliable network protocol, works even with SLIP connections via modem
- windows can be freely scaled to avoid speed drawbacks due to poor display performance
- modular, portable source code
- scores
- extensive documentation (german)
Download (0.58MB)
Added: 2006-12-12 License: Freeware Price:
1050 downloads
udpeq 0.1
udpeq is a program that balances UDP traffic over parallel routes. more>>
udpeq is a program that balances UDP traffic over parallel routes. This is useful if you want to connect two endpoints through several slow or unreliable channels. For example, if you have 3 modem lines and a one-way satellite link, you might want to bond all of these together to form a faster, more reliable "virtual" connection.
udpeq by itself just shuttles UDP packets between two endpoints. You will almost certainly want to use a higher-level tunnel on top of udpeq to provide a "real" IP connection. CIPE or OPENVPN are perfect for this job.
Existing solutions of this nature (for example, multi-link ppp) tend to make simplistic assumptions about the bandwidth and availability of the channels. udpeq attempts to dynamically adjust to changing conditions, being as robust as possible while still being able to maximize throughput.
<<lessudpeq by itself just shuttles UDP packets between two endpoints. You will almost certainly want to use a higher-level tunnel on top of udpeq to provide a "real" IP connection. CIPE or OPENVPN are perfect for this job.
Existing solutions of this nature (for example, multi-link ppp) tend to make simplistic assumptions about the bandwidth and availability of the channels. udpeq attempts to dynamically adjust to changing conditions, being as robust as possible while still being able to maximize throughput.
Download (0.048MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
Xphone 2.0
Xphone is made for users who intend to hook their modem up to external speakers or their sound card and use it as a speaker . more>>
Xphone is made for users who intend to hook their modem up to external speakers or their sound card and use it as a speaker .
By default you get a half duplex speaker phone. Try full duplex at your own risk.
If it locks up type killall chat at a prompt to try to get back.
Also if it locks up try running minicom and quitting it without resetting the modem to initialize the serial port.
The preferences menu has some good facilities to play with.
Select either half duplex or full duplex:
Half duplex doesnt seem to have any problems. Full duplex appears to only work on a few modems and it may lock yours up. More importantly full duplex may pop your speakers.
If yours locks up execute "killall chat" at a command line to get back.
Select a modem device:
The serial device your modem is connected to: (/dev/modem)
Select a chat command:
Xphone uses chat syntax to communicate with the modem. Set this to whatever your chat command is (/usr/sbin/chat). Some versions of chat have a -S flag which may improve serial port performance so you can also try "/usr/sbin/chat -S".
Compilation notes:
Libc6 users can build it by typing make in this directory. The standalone executable is dropped in xphone/
Hacks and problems:
Full duplex doesnt work on my modem. Serial port interface sometimes doesnt happen. GUI toolkit cant close sockets to the X server.
Enhancements:
- Fix hang on startup because the default volume setting was out of range.
<<lessBy default you get a half duplex speaker phone. Try full duplex at your own risk.
If it locks up type killall chat at a prompt to try to get back.
Also if it locks up try running minicom and quitting it without resetting the modem to initialize the serial port.
The preferences menu has some good facilities to play with.
Select either half duplex or full duplex:
Half duplex doesnt seem to have any problems. Full duplex appears to only work on a few modems and it may lock yours up. More importantly full duplex may pop your speakers.
If yours locks up execute "killall chat" at a command line to get back.
Select a modem device:
The serial device your modem is connected to: (/dev/modem)
Select a chat command:
Xphone uses chat syntax to communicate with the modem. Set this to whatever your chat command is (/usr/sbin/chat). Some versions of chat have a -S flag which may improve serial port performance so you can also try "/usr/sbin/chat -S".
Compilation notes:
Libc6 users can build it by typing make in this directory. The standalone executable is dropped in xphone/
Hacks and problems:
Full duplex doesnt work on my modem. Serial port interface sometimes doesnt happen. GUI toolkit cant close sockets to the X server.
Enhancements:
- Fix hang on startup because the default volume setting was out of range.
Download (0.16MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1193 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above modem 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