mirror of
https://github.com/dlang/phobos.git
synced 2025-05-03 08:30:33 +03:00
14 lines
709 B
D
14 lines
709 B
D
// Written in the D programming language.
|
|
|
|
/*
|
|
* This module is just for making std.socket work under FreeBSD, and these
|
|
* definitions should actually be in druntime. (core.sys.posix.netdb or sth)
|
|
*/
|
|
deprecated("Please import the core.sys.posix.* modules you need instead. This module will be removed in April 2015.")
|
|
module std.c.freebsd.socket;
|
|
|
|
public import core.sys.posix.netdb;
|
|
public import core.sys.posix.sys.socket : AF_APPLETALK, AF_IPX, SOCK_RDM, MSG_NOSIGNAL;
|
|
public import core.sys.posix.netinet.in_ : IPPROTO_IGMP, IPPROTO_GGP,
|
|
IPPROTO_PUP, IPPROTO_IDP, IPPROTO_ND,
|
|
IPPROTO_MAX, INADDR_LOOPBACK, INADDR_NONE;
|