mirror of
https://github.com/ipxe/ipxe
synced 2026-03-16 03:02:07 +03:00
[proto] Remove unsupported NMB protocol
The NMB protocol code came from legacy Etherboot and was never updated to work as a gPXE protocol. There has been no demand for this protocol, so this patch removes it. Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com> Signed-off-by: Marty Connor <mdc@etherboot.org>
This commit is contained in:
committed by
Marty Connor
parent
00a780e38f
commit
26f882bf64
@@ -1,22 +0,0 @@
|
||||
#ifndef NMB_H
|
||||
#define NMB_H
|
||||
|
||||
#include <gpxe/dns.h>
|
||||
|
||||
/*
|
||||
* NetBIOS name query packets are basically the same as DNS packets,
|
||||
* though the resource record format is different.
|
||||
*
|
||||
*/
|
||||
|
||||
#define DNS_TYPE_NB 0x20
|
||||
#define DNS_FLAG_BROADCAST ( 0x01 << 4 )
|
||||
#define NBNS_UDP_PORT 137
|
||||
|
||||
struct dns_rr_info_nb {
|
||||
struct dns_rr_info info;
|
||||
uint16_t nb_flags;
|
||||
struct in_addr nb_address;
|
||||
} __attribute__ (( packed ));
|
||||
|
||||
#endif /* NMB_H */
|
||||
Reference in New Issue
Block a user