phobos/std/c/freebsd/socket.d
Sebastian Wilzbach 42894784dd Markdownify Phobos
$(D word) -> `word`
2018-04-02 22:32:47 +02:00

17 lines
690 B
D

// Written in the D programming language.
// @@@DEPRECATED_2017-06@@@
/++
$(RED Deprecated. Use the appropriate `core.sys.posix.*` modules instead.
This module will be removed in June 2017.)
+/
deprecated("Import the appropriate core.sys.posix.* modules instead")
module std.c.freebsd.socket;
version (FreeBSD):
public import core.sys.posix.netdb;
public import core.sys.posix.netinet.in_ : IPPROTO_IGMP, IPPROTO_GGP,
IPPROTO_PUP, IPPROTO_IDP, IPPROTO_ND,
IPPROTO_MAX, INADDR_LOOPBACK, INADDR_NONE;
public import core.sys.posix.sys.socket : AF_APPLETALK, AF_IPX, SOCK_RDM, MSG_NOSIGNAL;