* src/backend/connection.cpp (buildBconfiguration): accept

color faxes now by setting bit 10 in B3configuration


git-svn-id: https://svn.ibp.de/svn/capisuite/trunk/capisuite@195 4ebea2bb-67d4-0310-8558-a5799e421b66
This commit is contained in:
gernot 2003-12-21 21:15:10 +00:00
parent 6a1c9729f8
commit f9ebdf1fbf
2 changed files with 16 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2003-12-21 Gernot Hillier <gernot@hillier.de>
* src/backend/connection.cpp (buildBconfiguration): accept
color faxes now by setting bit 10 in B3configuration
2003-12-02 Gernot Hillier <gernot@hillier.de>
* scripts/idle.py (idle): fix a wrong call of ConfigParser::get
@ -11,15 +16,15 @@
2003-10-19 Gernot Hillier <gernot@hillier.de>
* docs/manual.docbook (creating_alaw): add note how to convert vbox
* docs/manual.docbook (creating_alaw): add note how to convert vbox
to inversed A-Law files (thx to Thomas Niesel)
* docs/manual-de.docbook (creating_alaw): see above
* docs/manual-de.docbook (creating_alaw): see above
* docs/manual.docbook (require_soft): updated link to jpeg2ps (thx to
* docs/manual.docbook (require_soft): updated link to jpeg2ps (thx to
Achim Bohnet)
* docs/manual-de.docbook (require_soft): see above
* docs/manual-de.docbook (require_soft): see above
* scripts/cs_helpers.pyin (sendMIMEMail): better wording for some error
* scripts/cs_helpers.pyin (sendMIMEMail): better wording for some error
messages
2003-10-05 Gernot Hillier <gernot@hillier.de>

View File

@ -2,7 +2,7 @@
@brief Contains Connection - Encapsulates a CAPI connection with all its states and methods.
@author Gernot Hillier <gernot@hillier.de>
$Revision: 1.12 $
$Revision: 1.13 $
*/
/***************************************************************************
@ -1028,7 +1028,7 @@ Connection::buildBconfiguration(_cdword controller, service_t service, string fa
B3config=new unsigned char [1+2+2+1+faxStationID.size()+1+faxHeadline.size()]; // length + 1 byte for the length itself
int i=0;
B3config[i++]=2+2+1+faxStationID.size()+1+faxHeadline.size(); // length
B3config[i++]=0; B3config[i++]=0; // resolution = standard
B3config[i++]=0; B3config[i++]=4; // resolution = standard; accept color faxes
B3config[i++]=0; B3config[i++]=0; // format: SFF
B3config[i++]=faxStationID.size();
for (unsigned j=0;j<faxStationID.size();j++)
@ -1082,6 +1082,10 @@ Connection::convertToCP437(string &text)
/* History
$Log: connection.cpp,v $
Revision 1.13 2003/12/21 21:15:10 gernot
* src/backend/connection.cpp (buildBconfiguration): accept
color faxes now by setting bit 10 in B3configuration
Revision 1.12 2003/07/20 19:08:19 gernot
- added missing include of errno.h