From: Adam Dickmeiss Date: Tue, 10 Sep 2002 11:30:37 +0000 (+0000) Subject: Added fflush for APDU log X-Git-Tag: YAZPP.0.3~5 X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=commitdiff_plain;h=0e4148ba1e09e25bea2fa1403bf720860a308082 Added fflush for APDU log --- diff --git a/src/yaz-z-assoc.cpp b/src/yaz-z-assoc.cpp index e3389d3..d28ae94 100644 --- a/src/yaz-z-assoc.cpp +++ b/src/yaz-z-assoc.cpp @@ -2,7 +2,7 @@ * Copyright (c) 1998-2001, Index Data. * See the file LICENSE for details. * - * $Id: yaz-z-assoc.cpp,v 1.23 2002-04-22 12:08:07 adam Exp $ + * $Id: yaz-z-assoc.cpp,v 1.24 2002-09-10 11:30:37 adam Exp $ */ #include @@ -197,7 +197,10 @@ Z_APDU *Yaz_Z_Assoc::decode_Z_PDU(const char *buf, int len) else { if (m_APDU_file) + { z_APDU(m_odr_print, &apdu, 0, "decode"); + fflush(m_APDU_file); + } return apdu; } } @@ -205,7 +208,10 @@ Z_APDU *Yaz_Z_Assoc::decode_Z_PDU(const char *buf, int len) int Yaz_Z_Assoc::encode_Z_PDU(Z_APDU *apdu, char **buf, int *len) { if (m_APDU_file) + { z_APDU(m_odr_print, &apdu, 0, "encode"); + fflush(m_APDU_file); + } if (!z_APDU(m_odr_out, &apdu, 0, 0)) { if (m_APDU_file)