Cygwin: drop unused device nodes and clean up socket devices
* Rename DEV_TCP_MAJOR to DEV_SOCK_MAJOR * Drop FH_TCP, FH_UDP, FH_ICMP in favor of single FH_INET * Drop FH_UNIX, FH_STREAM, FH_DGRAM in favor of single FH_LOCAL Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
@ -120,17 +120,11 @@ const _device dev_piper_storage =
|
||||
const _device dev_pipew_storage =
|
||||
{"", {FH_PIPEW}, "", exists_internal};
|
||||
|
||||
const _device dev_tcp_storage =
|
||||
{"", {FH_TCP}, "", exists_internal};
|
||||
const _device dev_af_inet_storage =
|
||||
{"", {FH_INET}, "", exists_internal};
|
||||
|
||||
const _device dev_udp_storage =
|
||||
{"", {FH_UDP}, "", exists_internal};
|
||||
|
||||
const _device dev_stream_storage =
|
||||
{"", {FH_STREAM}, "", exists_internal};
|
||||
|
||||
const _device dev_dgram_storage =
|
||||
{"", {FH_DGRAM}, "", exists_internal};
|
||||
const _device dev_af_local_storage =
|
||||
{"", {FH_LOCAL}, "", exists_internal};
|
||||
|
||||
const _device dev_bad_storage =
|
||||
{"", {FH_NADA}, "", exists_internal};
|
||||
|
Reference in New Issue
Block a user