mirror of
https://github.com/dschmenk/PLASMA.git
synced 2024-11-08 22:06:21 +00:00
Page:
Network I O
Pages
32 Bit Integers
CATalog files
COPY files
Chat Client Server
Command Line Argument Parsing
Console I O
DCGR SPRite EDitor
DELete fles
Double Color Hires Graphics
Double Lo Res Graphics
Double Lo Res Test
Fiber Threads
File I O
Game Port SPI I O
Game Port SPI SD FAT
Game Port Wiring
HTTP Server
Hello World
Hi Res Graphics
Hi Res Test
Home
Installation Guide
Joystick and Buzz
Lo Res Graphics Library
Long Jump
Memory Manager
Music Player
Music Sequencer
NEWDIR
Network I O
PLASM compiler
PLASMA Byte Codes
PLASMA JIT Compiler Implementation
Porting Guide
REName files
ROGUE
RPN Calculator
Rod's Colors
SANE Floating Point
Sieve
System Library
TYPE file
Trivial FTP Daemon
Variable assignment and addressing explained
ZIPCHIP
Zero Page Usage (Apple IIe 64K )
code text Editor
16
Network I O
4am edited this page 2020-07-09 20:09:52 -04:00
The inet:initIP()
must be called before any other functions can be called. The ethernet driver will be dynamically loaded at this time.
Compatibility: II, ///
Usage: include "inc/inet.plh"
API:
inet:initIP()
inet:serviceIP()
inet:openUDP(localport, callback, param)
inet:sendUDP(chan, ipdst, portdst, data, len)
inet:closeUDP(chan)
inet:listenTCP(lclport, callback, param)
inet:connectTCP(remip, remport, lclport, callback, param)
inet:sendTCP(chan, data, len)
inet:closeTCP(chan)
inet:resolveIP(namestr, ipaddr)
inet:setCallback(chan, callback)
inet:setParam(chan, param)
Source Code: inet.pla
, dhcp.pla
, uthernet2.pla
, etherip.pla
, uthernet.pla