- To: r.polanskis@xxxxxxxxxxxxxxxxx
- Subject: Re: [SLUG] Rack of 17 netcomm M34F modems?
- From: davidf@xxxxxxxxxxxxxxxxxx (Dave Fitch)
- Date: Mon Jul 10 16:36:59 2000
- Cc: slug@xxxxxxxxxxx
make that:
if (strcasecmp(modem.manufacturer, "netcomm") == 0 &&
strcasecmp(modem.version, "m34f") == 0))
{
keep(); // and use for dial-in access or for some place
// where most content is served out (ie. you will
// still only get 33.6 outbound with a 56k modem).
// I'm still hanging onto my m34f for when I
// eventually get round to setting up dial in
// access to my home machine.
}
else
{
if (modem == 33.6) {
// bit hard for rack modems though...
sell_to_someone_looking_for_a_cheap_modem();
} else if (modem == 56) {
keep();
}
}
Another option is get 17 phone lines and run MPPP over them!
That'll get you a 500-odd kbps connection (ok it's a bit pricey).
Dave.
Norman Widders <torqumada@xxxxxxxxxxxxxxxxxx>
>
> if (modem == 33.6) {
> destroy();
> } else if (modem == 56) {
> keep();
> }
>