Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | updated |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3ac5a210387364191e460bfa4b0e7074 |
User & Date: | alexey@sudachen.name 2012-06-17 10:30:18.000 |
Context
2012-07-20
| ||
05:06 | updated check-in: ae6a246127 user: alexey@sudachen.name tags: trunk | |
2012-06-17
| ||
10:30 | updated check-in: 3ac5a21038 user: alexey@sudachen.name tags: trunk | |
2012-06-15
| ||
08:42 | updated check-in: 9f23bb5003 user: alexey@sudachen.name tags: trunk | |
Changes
Changes to tcpip.hc.
︙ | ︙ | |||
342 343 344 345 346 347 348 | if ( skt != INVALID_SOCKET && sok->async ) Tcp_Set_Async(skt); conerr = (skt != INVALID_SOCKET ) ? connect(skt,(struct sockaddr*)&addr,sizeof(addr)) : -1; if ( conerr < 0 ) { | | | 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | if ( skt != INVALID_SOCKET && sok->async ) Tcp_Set_Async(skt); conerr = (skt != INVALID_SOCKET ) ? connect(skt,(struct sockaddr*)&addr,sizeof(addr)) : -1; if ( conerr < 0 ) { if ( skt == INVALID_SOCKET || !sok->async ) { __Raise_Format(YOYO_ERROR_IO, (__yoTa("tcp connection failed: sok %d, point %s:%d, error %d",0) ,skt ,Ipv4_Format(ip) ,port ,conerr)); |
︙ | ︙ |