remove Syssocket which is from our pre-Qt days

This commit is contained in:
Stephen Birarda 2014-04-10 10:34:31 -07:00
parent 54647f0f08
commit 7cef2def66
5 changed files with 0 additions and 32 deletions

View file

@ -21,7 +21,6 @@
#include <string.h>
#ifdef _WIN32
#include "Syssocket.h"
#include "Systime.h"
#include <math.h>
#else

View file

@ -12,11 +12,6 @@
#ifndef hifi_LimitedNodeList_h
#define hifi_LimitedNodeList_h
#ifdef _WIN32
#include "Syssocket.h"
#else
#include <netinet/in.h>
#endif
#include <stdint.h>
#include <iterator>

View file

@ -12,12 +12,6 @@
#include <cstring>
#include <stdio.h>
#ifdef _WIN32
#include "Syssocket.h"
#else
#include <arpa/inet.h> // not available on windows, apparently not needed on mac
#endif
#include "Node.h"
#include "SharedUtil.h"

View file

@ -12,11 +12,6 @@
#ifndef hifi_NodeList_h
#define hifi_NodeList_h
#ifdef _WIN32
#include "Syssocket.h"
#else
#include <netinet/in.h>
#endif
#include <stdint.h>
#include <iterator>

View file

@ -1,15 +0,0 @@
#ifndef __Syssocket__
#define __Syssocket__
#ifdef _WIN32
#define WINSOCK_API_LINKAGE
#include <winsock2.h>
typedef SSIZE_T ssize_t;
typedef ULONG32 in_addr_t;
typedef USHORT in_port_t;
typedef USHORT uint16_t;
typedef ULONG32 socklen_t;
#endif _Win32
#endif __Syssocket__