Group network-related code together

Originally committed as revision 12371 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla 2008-03-08 17:43:10 +00:00
parent 8d06bd53f8
commit 591cf1170b
1 changed files with 4 additions and 4 deletions

View File

@ -27,10 +27,6 @@
* miscellaneous OS support macros and functions.
*/
#ifndef HAVE_SOCKLEN_T
typedef int socklen_t;
#endif
#ifdef __MINGW32__
__declspec(dllimport) void WINAPI Sleep(unsigned long dwMilliseconds);
// # include <windows.h>
@ -56,6 +52,10 @@ __declspec(dllimport) void WINAPI Sleep(unsigned long dwMilliseconds);
# endif
#endif
#ifndef HAVE_SOCKLEN_T
typedef int socklen_t;
#endif
/* most of the time closing a socket is just closing an fd */
#ifndef HAVE_CLOSESOCKET
#define closesocket close