Searched refs:bootp (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.10/bootp-298/IPConfiguration.bproj/
H A Dbootp.c25 * bootp.c
60 #include <netinet/bootp.h>
76 struct bootp request;
107 * Create a "blank" bootp packet.
110 make_bootp_request(struct bootp * pkt,
126 bootp_set_dhcp_info(Service_bootp_t * bootp, dhcp_info_t * dhcp_info_p) argument
128 dhcp_info_p->pkt = (uint8_t *)bootp->saved.pkt;
129 dhcp_info_p->pkt_size = bootp->saved.pkt_size;
130 dhcp_info_p->options = &bootp->saved.options;
139 Service_bootp_t * bootp local
150 Service_bootp_t * bootp = (Service_bootp_t *)ServiceGetPrivate(service_p); local
173 Service_bootp_t * bootp; local
187 Service_bootp_t * bootp = (Service_bootp_t *)ServiceGetPrivate(service_p); local
218 Service_bootp_t * bootp = (Service_bootp_t *)ServiceGetPrivate(service_p); local
257 Service_bootp_t * bootp = (Service_bootp_t *)ServiceGetPrivate(service_p); local
285 Service_bootp_t * bootp = (Service_bootp_t *)ServiceGetPrivate(service_p); local
351 Service_bootp_t * bootp = (Service_bootp_t *)ServiceGetPrivate(service_p); local
479 Service_bootp_t * bootp = (Service_bootp_t *)ServiceGetPrivate(service_p); local
492 Service_bootp_t * bootp = (Service_bootp_t *)ServiceGetPrivate(service_p); local
[all...]
H A Ddhcp.c60 #include <netinet/bootp.h>
478 if (dhcp_packet_match((struct bootp *)pkt->data, xid,
713 if (inform->request_size < sizeof(struct bootp)) {
715 inform->request_size = sizeof(struct bootp);
2144 if (dhcp->request_size < sizeof(struct bootp)) {
2146 dhcp->request_size = sizeof(struct bootp);
2412 if (dhcp->request_size < sizeof(struct bootp)) {
2414 dhcp->request_size = sizeof(struct bootp);
2682 if (dhcp->request_size < sizeof(struct bootp)) {
2684 dhcp->request_size = sizeof(struct bootp);
[all...]
H A DDHCPv6Socket.c55 #include <netinet/bootp.h>
H A Dbootp_session.c56 #include <netinet/bootp.h>
235 "bootp_session_delayed_close(): closing bootp socket %d",
306 "bootp_client_open_socket(): opened bootp socket %d",
H A Dlinklocal.c63 #include <netinet/bootp.h>
/macosx-10.10/bootp-298/bootplib/
H A Ddhcplib.h30 #import <netinet/bootp.h>
65 dhcp_packet_match(struct bootp * packet, u_int32_t xid,
H A Ddhcplib.c33 #include <netinet/bootp.h>
129 dhcp_packet_match(struct bootp * packet, u_int32_t xid,
H A DNICache.c44 #include <netinet/bootp.h>
/macosx-10.10/xnu-2782.1.97/bsd/netinet/
H A Dbootp.h38 * because the NeXT vendor area was overflowing the bootp
46 struct bootp { struct
126 struct bootp bp_bootp;
H A DMakefile11 bootp.h icmp6.h if_ether.h icmp_var.h \
/macosx-10.10/bootp-298/bootpd.tproj/
H A Dbootpd.h65 sendreply(interface_t * intf, struct bootp * bp, int n,
H A Dbootpd.c78 #include <netinet/bootp.h>
1489 struct bootp rp;
1490 struct bootp * rq = (struct bootp *)request->pkt;
1493 if (request->pkt_length < sizeof(struct bootp))
1595 sendreply(interface_t * if_p, struct bootp * bp, int n,
1843 S_relay_packet(struct bootp * bp, int n, interface_t * if_p)
1850 if (n < sizeof(struct bootp))
1946 S_dispatch_packet(struct bootp * bp, int n, interface_t * if_p,
2049 S_relay_packet((struct bootp *)(voi
[all...]
H A Dbsdpd.c60 #include <netinet/bootp.h>
1689 if (size < sizeof(struct bootp)) {
1691 size = sizeof(struct bootp);
1693 if (sendreply(request->if_p, (struct bootp *)reply, size,
2039 if (size < sizeof(struct bootp)) {
2041 size = sizeof(struct bootp);
2239 if (size < sizeof(struct bootp)) {
2241 size = sizeof(struct bootp);
2243 if (sendreply(request->if_p, (struct bootp *)reply, size,
H A Ddhcpd.c46 #include <netinet/bootp.h>
1252 if (size < sizeof(struct bootp)) {
1254 size = sizeof(struct bootp);
1260 if (sendreply(request->if_p, (struct bootp *)reply, size,
H A Dbootpdfile.c42 #include <netinet/bootp.h>
H A DmacNC.c54 #include <netinet/bootp.h>
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dmach++.h173 Bootstrap(mach_port_t bootp) : Port(bootp) { } argument
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dmach++.h173 Bootstrap(mach_port_t bootp) : Port(bootp) { } argument
/macosx-10.10/tcpdump-61/tcpdump/
H A Dbootp.h1 /* @(#) $Header: /tcpdump/master/tcpdump/bootp.h,v 1.19 2008-04-22 09:46:03 hannes Exp $ (LBL) */
23 struct bootp { struct
31 in print-bootp.c */
169 /* ftp://ftp.isi.edu/.../assignments/bootp-dhcp-extensions */
209 * "vendor" data permitted for CMU bootp clients.
H A Dprint-bootp.c21 * Format and print bootp packets.
25 "@(#) $Header: /tcpdump/master/tcpdump/print-bootp.c,v 1.89 2008-04-22 09:45:08 hannes Exp $ (LBL)";
41 #include "bootp.h"
47 static char tstr[] = " [|bootp]";
61 * Print bootp requests
66 register const struct bootp *bp;
70 bp = (const struct bootp *)cp;
114 /* 'your' ip address (bootp client) */
284 /* http://www.iana.org/assignments/bootp-dhcp-extensions/index.htm */
/macosx-10.10/bootp-298/BSDPClient/
H A DBSDPClient.c53 #include <netinet/bootp.h>
755 if (dhcp_packet_match((struct bootp *)receive_buf, client->xid,
1317 if (request_size < sizeof(struct bootp)) {
1319 request_size = sizeof(struct bootp);
1514 if (request_size < sizeof(struct bootp)) {
1516 request_size = sizeof(struct bootp);
/macosx-10.10/vim-55/runtime/syntax/
H A Dgrub.vim36 syn keyword grubCommand contained bootp color device dhcp hide ifconfig
/macosx-10.10/ppp-786.1.1/Family/
H A Dppp_ip.c53 #include <netinet/bootp.h>
289 Check if the packet is a bootp packet for us
311 Check if the packet is a broadcast bootp packet
/macosx-10.10/tcpdump-61/tcpdump/win32/prj/
H A DGNUmakefile57 ../../print-bootp.o \
/macosx-10.10/configd-699.1.5/
H A Dget-mobility-info881 if [ -f /var/log/com.apple.IPConfiguration.bootp ]; then
882 ${PRIV} ${TAIL_2000} /var/log/com.apple.IPConfiguration.bootp \
883 > com.apple.IPConfiguration.bootp

Completed in 231 milliseconds

12