mirror of
https://github.com/nmap/nmap.git
synced 2025-12-10 09:49:05 +00:00
a layer 4 protocol used mostly for telephony related applications.
This brings the following new features:
o SCTP INIT chunk port scan (-sY): open ports return an INIT-ACK
chunk, closed ones an ABORT chunk. This is the SCTP equivalent
of a TCP SYN stealth scan.
o SCTP COOKIE-ECHO chunk port scan (-sZ): open ports are silent,
closed ports return an ABORT chunk.
o SCTP INIT chunk ping probes (-PY): host discovery using SCTP
INIT chunk packets.
o SCTP-specific IP protocol scan (-sO -p sctp).
o SCTP-specific traceroute support (--traceroute).
o The ability to use the deprecated Adler32 algorithm as specified
in RFC 2960 instead of CRC32C from RFC 4960 (--adler32).
o 42 well-known SCTP ports were added to the nmap-services file.
Part of the work on SCTP support was kindly sponsored by
Compass Security AG, Switzerland. [Daniel Roethlisberger]
33 lines
538 B
C
33 lines
538 B
C
/*
|
|
* dnet.h
|
|
*
|
|
* Copyright (c) 2001 Dug Song <dugsong@monkey.org>
|
|
*
|
|
* $Id: dnet.h 529 2004-09-10 03:10:01Z dugsong $
|
|
*/
|
|
|
|
#ifndef DNET_H
|
|
#define DNET_H
|
|
|
|
#include <dnet/os.h>
|
|
|
|
#include <dnet/eth.h>
|
|
#include <dnet/ip.h>
|
|
#include <dnet/ip6.h>
|
|
#include <dnet/addr.h>
|
|
#include <dnet/arp.h>
|
|
#include <dnet/icmp.h>
|
|
#include <dnet/tcp.h>
|
|
#include <dnet/udp.h>
|
|
#include <dnet/sctp.h>
|
|
|
|
#include <dnet/intf.h>
|
|
#include <dnet/route.h>
|
|
#include <dnet/fw.h>
|
|
#include <dnet/tun.h>
|
|
|
|
#include <dnet/blob.h>
|
|
#include <dnet/rand.h>
|
|
|
|
#endif /* DNET_H */
|