/usr/include/dpm/socket_timeout.h is in libdpm-dev 1.8.7-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /*
* $Id: socket_timeout.h,v 1.1.1.1 2002/09/16 14:35:56 baud Exp $
*
* $Log: socket_timeout.h,v $
* Revision 1.1.1.1 2002/09/16 14:35:56 baud
* Initial release
*
* Revision 1.6 2002/09/04 08:06:51 jdurand
* nbytes argument changed from int for ssize_t
*
* Revision 1.5 2000/05/31 10:35:17 obarring
* Add DLL_DECL to prototypes
*
* Revision 1.4 1999/10/20 19:11:53 jdurand
* Introduced a typdef size_t ssize_t so that Windows is happy
*
* Revision 1.3 1999/10/14 12:06:11 jdurand
* *** empty log message ***
*
* Revision 1.2 1999-07-20 10:51:14+02 jdurand
* 20-JUL-1999 Jean-Damien Durand
* Added missing Id and Log CVS's directives
*
*/
#ifndef __stgtimeout_h
#define __stgtimeout_h
#include <osdep.h>
#include <net.h>
#if _WIN32
#include <windows.h>
typedef size_t ssize_t;
#else
#include <sys/types.h>
#endif
EXTERN_C ssize_t DLL_DECL netread_timeout _PROTO((SOCKET, void *, ssize_t, int));
EXTERN_C ssize_t DLL_DECL netwrite_timeout _PROTO((SOCKET, void *, ssize_t, int));
#endif /* __stgtimeout_h */
|