package embox.net.util

module hostent {
	option number max_name_len=64
	option number max_aliases_num=10
	option number max_addr_len=16
	option number max_addrs_num=10
	source "hostent.c"
}

module macaddr {
	source "macaddr.c"
}

module netent {
	option number max_name_len=128
	option number max_aliases_num=10
	source "netent.c"
}

module protoent {
	option number max_name_len=32
	option number max_aliases_num=10
	source "protoent.c"
}

module servent {
	option number max_name_len=32
	option number max_aliases_num=10
	option number max_proto_len=32
	source "servent.c"
}

module show_packet {
	@IncludeExport(path="net/util")
	source "show_packet.h"
}
