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 <[EMAIL PROTECTED]>
> 
> if (modem == 33.6) {
>       destroy();
> } else if (modem == 56) {
>       keep();
> }
> 


--
SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
More Info: http://slug.org.au/lists/listinfo/slug

Reply via email to