1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 03:09:13 +00:00

PubUtilLib Part IV

This commit is contained in:
2011-04-07 23:37:07 -07:00
parent 93ac5b22a9
commit 3bf6b7e182
121 changed files with 904 additions and 392 deletions

View File

@ -0,0 +1,34 @@
include_directories("../../CoreLib")
include_directories("../../NucleusLib")
include_directories("../../PubUtilLib")
set(plSockets_SOURCES
plBufferedSocketReader.cpp
plBufferedSocketWriter.cpp
plFdSet.cpp
plMemBuffer.cpp
plNet.cpp
plOutgoingUdpSocket.cpp
plRingBuffer.cpp
plSocket.cpp
plTcpListenSocket.cpp
plTcpSocket.cpp
)
set(plSockets_HEADERS
plBufferedSocketReader.h
plBufferedSocketWriter.h
plFdSet.h
plMemBuffer.h
plNet.h
plOutgoingUdpSocket.h
plRingBuffer.h
plSocket.h
plTcpListenSocket.h
plTcpSocket.h
)
add_library(plSockets STATIC ${plSockets_SOURCES} ${plSockets_HEADERS})
source_group("Source Files" FILES ${plSockets_SOURCES})
source_group("Header Files" FILES ${plSockets_HEADERS})

View File

@ -25,7 +25,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "plOutgoingUdpSocket.h"
#include "plFdSet.h"
#include "../pnNetCommon/plNetAddress.h"
#include "pnNetCommon/plNetAddress.h"
#if HS_BUILD_FOR_UNIX
#include <sys/types.h>

View File

@ -24,7 +24,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "plTcpListenSocket.h"
#include "../pnNetCommon/plNetAddress.h"
#include "pnNetCommon/plNetAddress.h"
// Initialize a socket for listening

View File

@ -25,7 +25,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "plTcpSocket.h"
#include "plFdSet.h"
#include "../pnNetCommon/plNetAddress.h"
#include "pnNetCommon/plNetAddress.h"
#if HS_BUILD_FOR_UNIX
#include <sys/types.h>