diff options
| author | Stefan Hajnoczi | 2010-01-30 10:57:32 +0100 |
|---|---|---|
| committer | Marty Connor | 2010-02-01 01:24:12 +0100 |
| commit | 26f882bf64518155256ca19334db3999a725ccac (patch) | |
| tree | 2d31aa9b30312191f0063bccc40043099b5f3184 /src/include | |
| parent | [proto] Remove unsupported IGMP protocol (diff) | |
| download | ipxe-26f882bf64518155256ca19334db3999a725ccac.tar.gz ipxe-26f882bf64518155256ca19334db3999a725ccac.tar.xz ipxe-26f882bf64518155256ca19334db3999a725ccac.zip | |
[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>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/nmb.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/include/nmb.h b/src/include/nmb.h deleted file mode 100644 index 3e551ffd5..000000000 --- a/src/include/nmb.h +++ /dev/null @@ -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 */ |
