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:
@ -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})
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
Reference in New Issue
Block a user