[GnomeMeeting-devel-list] Re: Congratulations. You are the winner.



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Works. :D

Btw, you should replace

   if (!transport.bad() && !transport.eof()) {
    transport.SetReadTimeout(3000);
    transport >> cmd >> mime;
  }

   if (transport.bad() || transport.eof()) {
    PTRACE_IF(1, transport.GetErrorCode(PChannel::LastReadError) !=
PChannel::NoError,
              "SIP\tPDU Read failed: " <<
transport.GetErrorText(PChannel::LastReadError));
    return FALSE;
  }

by

   if (!transport.bad() && !transport.eof()) {
    transport.SetReadTimeout(3000);
    transport >> cmd >> mime;
  }
   else {
    PTRACE_IF(1, transport.GetErrorCode(PChannel::LastReadError) !=
PChannel::NoError,
              "SIP\tPDU Read failed: " <<
transport.GetErrorText(PChannel::LastReadError));
    return FALSE;
  }

Greetings,
Jan Schiefer!
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCX41DzC00UKXFdVcRApghAJ904lUs2oc4zP51Q1+DhutZQ8UqrACeJsCC
4FHrTw771MOe+FL0zdIlpvk=
=aNcO
-----END PGP SIGNATURE-----




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]