Home | History | Annotate | Download | only in rbootd

Lines Matching defs:rmp

87 	struct rmp_packet *rmp;
113 rmp = &rconn->rmp;
117 rmp->hp_llc.dsap, rmp->hp_llc.ssap, ntohs(rmp->hp_llc.cntrl));
121 ntohs(rmp->hp_llc.dxsap), ntohs(rmp->hp_llc.sxsap));
124 * Display information about RMP packet using type field to
127 switch(rmp->r_type) {
130 GETWORD(rmp->r_brq.rmp_seqno, t);
131 if (ntohs(rmp->r_brq.rmp_session) == RMP_PROBESID) {
132 if (WORDZE(rmp->r_brq.rmp_seqno))
138 (void) fprintf(DbgFp, BootFmt, rmp->r_brq.rmp_retcode,
139 (unsigned long)t, ntohs(rmp->r_brq.rmp_session),
140 ntohs(rmp->r_brq.rmp_version));
143 (void) fputc(rmp->r_brq.rmp_machtype[i], DbgFp);
144 DspFlnm(rmp->r_brq.rmp_flnmsize, &rmp->r_brq.rmp_flnm);
148 GETWORD(rmp->r_brpl.rmp_seqno, t);
149 (void) fprintf(DbgFp, BootFmt, rmp->r_brpl.rmp_retcode,
150 (unsigned long)t, ntohs(rmp->r_brpl.rmp_session),
151 ntohs(rmp->r_brpl.rmp_version));
152 DspFlnm(rmp->r_brpl.rmp_flnmsize,&rmp->r_brpl.rmp_flnm);
156 GETWORD(rmp->r_rrq.rmp_offset, t);
157 (void) fprintf(DbgFp, ReadFmt, rmp->r_rrq.rmp_retcode,
158 (unsigned long)t, ntohs(rmp->r_rrq.rmp_session));
160 ntohs(rmp->r_rrq.rmp_size));
164 GETWORD(rmp->r_rrpl.rmp_offset, t);
165 (void) fprintf(DbgFp, ReadFmt, rmp->r_rrpl.rmp_retcode,
166 (unsigned long)t, ntohs(rmp->r_rrpl.rmp_session));
173 rmp->r_done.rmp_retcode,
174 ntohs(rmp->r_done.rmp_session));
178 rmp->r_type);
188 ** GetEtherAddr -- convert an RMP (Ethernet) address into a string.
190 ** An RMP BOOT packet has been received. Look at the type field
263 ** addr - RMP (Ethernet) address of new client.
479 ** We use the RMP (Ethernet) address as the basis for determining
501 if (memcmp((char *)&rconn->rmp.hp_hdr.saddr[0],
502 (char *)&rtmp->rmp.hp_hdr.saddr[0], RMP_ADDRLEN) == 0)