mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
8 lines
250 B
C
8 lines
250 B
C
module std::net;
|
|
|
|
const int SOCK_STREAM = 1; // Stream
|
|
const int SOCK_DGRAM = 2; // Datagram
|
|
const int SOCK_RAW = 3; // Raw
|
|
const int SOCK_RDM = 4; // Reliably delivered
|
|
const int SOCK_SEQPACKET = 5; // Sequential packet
|