Hi,
in pth_high.c, function pth_connect_ev, line 499, there is
>> if (rv == -1 && errno == EINPROGRESS
>> && fdmode != PTH_FDMODE_NONBLOCK)
while PTH_FDMODE_NONBLOCK has been set earlier.
Maybe there's something I don't get, but I had a problem with
pth_connect_ev retuning an error, and when I changed the test to
>> if (rv == -1 && errno == EINPROGRESS)
it started to work.
What do you think ?
Stefan
- Re: bug in pth 1.4.1 ?? Stefan Praszalowicz
- Re: bug in pth 1.4.1 ?? Archie Cobbs