Closed GoogleCodeExporter closed 9 years ago
The error code is unix error number.
For detail info, you can see the header file in the unix system:
/usr/include/errno.h
In Linux, the destination file is: /usr/include/asm/errno.h
Original comment by happyfis...@gmail.com
on 25 Aug 2009 at 10:27
for example:
28 means no space left on device, the storage server is full
#define ENOSPC 28 /* No space left on device */
Original comment by happyfis...@gmail.com
on 25 Aug 2009 at 10:29
in php, thereis a function socket_strerror,which can return the string desc
of a
error number.
Original comment by wwc...@gmail.com
on 25 Aug 2009 at 12:46
the error no 28 is not the socket errno, it's unix errno.
so you should see the c header file: /usr/include/errno.h
Original comment by happyfis...@gmail.com
on 26 Aug 2009 at 11:00
Original comment by happyfis...@gmail.com
on 24 Nov 2010 at 8:05
Original issue reported on code.google.com by
wwc...@gmail.com
on 25 Aug 2009 at 2:14