New features for network

This commit is contained in:
Baptiste Wicht 2016-09-13 21:08:16 +02:00
parent b9f9b9163a
commit ebbc38838b

View File

@ -114,12 +114,14 @@ enum class socket_domain : size_t {
enum class socket_type : size_t {
RAW,
DGRAM
DGRAM,
STREAM
};
enum class socket_protocol : size_t {
ICMP,
DNS
DNS,
TCP
};
} // end of network namespace