Changelog for HylaFAX 4.2.1
+* fix Class 1 support for services "0,1.0" (26 Nov 2004)
* limit hfaxd jobs cache size (23 Nov 2004)
* fix hfaxd ABOR command and trigger (23 Nov 2004)
* fix error when hfaxd FIFO fills (23 Nov 2004)
fxStr s;
if (doQuery(conf.classQueryCmd, s, 500) && FaxModem::parseRange(s, modemServices))
traceBits(modemServices & SERVICE_ALL, serviceNames);
- if ((modemServices & SERVICE_CLASS1) == 0)
+ if ((modemServices & serviceType) == 0)
return (false);
atCmd(classCmd);
bool
Class1Modem::setupClass1Parameters()
{
- if (modemServices & SERVICE_CLASS1) {
+ if (modemServices & serviceType) {
setupFlowControl(flowControl);
atCmd(conf.setupAACmd);
}