• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

VisualC/H15-Jan-2012-1,1391,106

Xcode/H15-Jan-2012-860772

Xcode-iOS/SDL_net.xcodeproj/H15-Jan-2012-257245

acinclude/H15-Jan-2012-8,3507,483

CHANGESH A D15-Jan-20124.1 KiB11097

COPYINGH A D15-Jan-2012983 2117

Makefile.amH A D15-Jan-20121.5 KiB7358

Makefile.inH A D03-May-202226.8 KiB807708

READMEH A D15-Jan-2012948 2820

SDL_net.hH A D15-Jan-201217.9 KiB453184

SDL_net.pc.inH A D15-Jan-2012257 1210

SDL_net.qpg.inH A D15-Jan-20125 KiB9793

SDL_net.specH A D15-Jan-20121.3 KiB6549

SDL_net.spec.inH A D15-Jan-20121.3 KiB6550

SDLnet.cH A D15-Jan-20126.5 KiB270189

SDLnetTCP.cH A D15-Jan-20127.8 KiB296183

SDLnetUDP.cH A D15-Jan-201213 KiB529354

SDLnetselect.cH A D15-Jan-20124.3 KiB164102

SDLnetsys.hH A D03-May-20222.5 KiB10064

aclocal.m4H A D15-Jan-201237.3 KiB969874

autogen.shH A D15-Jan-2012158 94

chat.cppH A D15-Jan-201211.3 KiB484355

chat.hH A D15-Jan-20122 KiB5421

chatd.cH A D15-Jan-20126.3 KiB260187

config.guessH A D15-Jan-201243.7 KiB1,4951,284

config.subH A D15-Jan-201233.5 KiB1,7011,553

configureH A D15-Jan-2012570.1 KiB19,45015,208

configure.inH A D15-Jan-20123.5 KiB147129

depcompH A D15-Jan-201217.2 KiB585370

gcc-fat.shH A D15-Jan-20122.9 KiB11293

install-shH A D15-Jan-201212.9 KiB508340

ltmain.shH A D15-Jan-2012237.6 KiB8,4086,472

missingH A D15-Jan-201210.9 KiB368275

showinterfaces.cH A D15-Jan-20121.5 KiB4218

version.rcH A D15-Jan-2012968 3934

README

1
2SDL_net 1.2
3
4The latest version of this library is available from:
5http://www.libsdl.org/projects/SDL_net/
6
7This is an example portable network library for use with SDL.
8It is available under the zlib license, found in the file COPYING.
9The API can be found in the file SDL_net.h
10This library supports UNIX, Windows, MacOS Classic, MacOS X,
11BeOS and QNX.
12
13The demo program is a chat client and server.
14The chat client requires the sample GUI library available at:
15http://www.libsdl.org/projects/GUIlib/
16The chat client connects to the server via TCP, registering itself.
17The server sends back a list of connected clients, and keeps the
18client updated with the status of other clients.
19Every line of text from a client is sent via UDP to every other client.
20
21Note that this isn't necessarily how you would want to write a chat
22program, but it demonstrates how to use the basic features of the
23network library.
24
25Enjoy!
26	-Sam Lantinga and Roy Wood
27
28