http://bugs.winehq.org/show_bug.cgi?id=3254
--- Comment #71 from Sisir myspecialids-wine@yahoo.co.in 2009-06-05 01:05:16 --- For the INVALID VERSION case, I think we are hitting a corruption.
gnutls logs in the following format:
<snip>
_gnutls_record_log(("REC[%x]: INVALID VERSION PACKET: (%d) %d.%d\n",session,htype, version[0], version[1]);
</snip>
Corresponding to that case we are getting, from wine logs
INVALID VERSION PACKET: (-1) 90.174
Hdr type = -1? Version 90.174?
Another instance: INVALID VERSION PACKET: (-1) 253.252
The maximum allowable version seems to be 4 (GNUTLS_TLS1_2)
Seems like corruption to me but I'm no networking guy. Someone with a much clearer understanding could probably pitch in here.