/src/sys/lib/libsa/ |
iodesc.h | 69 u_short myport; /* local port, net order */ member in struct:iodesc
|
udp.c | 77 inet_ntoa(d->myip), ntohs(d->myport)); 89 uh->uh_sport = d->myport; 116 if (uh->uh_dport != d->myport) { 120 ntohs(d->myport), ntohs(uh->uh_dport));
|
bootparam.c | 162 d->myport = (uint16_t)htons((uint16_t)rpc_port); 279 d->myport = htons((uint16_t)rpc_port);
|
bootp.c | 170 d->myport = htons(IPPORT_BOOTPC);
|
tftp.c | 175 /* h->iodesc->myport = htons(--tftpport); */ 176 h->iodesc->myport = htons(tftpport + (getsecs() & 0x3ff));
|
nfs.c | 552 desc->myport = htons(--rpc_port);
|
/src/tests/rump/rumpkern/h_client/ |
h_stresscli.c | 136 int rounds, myport; local in function:main 170 myport = i*NCLI + j+2; 173 (void*)(uintptr_t)myport) !=0 ) 176 myport = i*NCLI+1; 177 client((void *)(uintptr_t)myport);
|
/src/sys/netinet/ |
portalgo.c | 388 uint16_t myport = *next_ephemeral; local in function:algo_bsd 390 if (myport < mymin || mymax < myport) 391 myport = mymax; 392 *next_ephemeral = myport - 1; 393 if (check_suitable_port(myport, inp, cred)) { 394 *port = myport; 608 uint16_t offset, myport; local in function:algo_hash 632 myport = mymin + (*next_ephemeral + offset) 637 if (check_suitable_port(myport, inp, cred)) 657 uint16_t offset, myport; local in function:algo_doublehash 711 uint16_t myport; local in function:algo_randinc [all...] |
sctp_header.h | 173 u_int16_t myport; /* my port address used in the INIT */ member in struct:sctp_state_cookie
|
sctp_input.c | 1757 (cookie->myport != sh->dest_port) &&
|
sctp_output.c | 3352 stc.myport = sh->dest_port;
|
/src/sys/arch/mvme68k/stand/sboot/ |
sboot.h | 85 u_short myport; variable in typeref:typename:u_short
|
etherfun.c | 103 myport = (u_short)time(); 104 if (myport < 1000) 105 myport += 1000; 128 udph->uh_sport = myport;
|
/src/sys/arch/i386/stand/pxeboot/ |
pxe.c | 130 uw->src_port = d->myport; 166 ur->d_port = d->myport; 185 uh->uh_dport = d->myport;
|