Lines Matching refs:spp
1496 struct spd_proto *spp; in spdsock_encode_proto() local
1501 spp = (struct spd_proto *)(base + offset); in spdsock_encode_proto()
1502 spp->spd_proto_len = SPD_8TO64(sizeof (*spp)); in spdsock_encode_proto()
1503 spp->spd_proto_exttype = SPD_EXT_PROTO; in spdsock_encode_proto()
1504 spp->spd_proto_number = proto; in spdsock_encode_proto()
1505 spp->spd_proto_reserved1 = 0; in spdsock_encode_proto()
1506 spp->spd_proto_reserved2 = 0; in spdsock_encode_proto()
1508 offset += sizeof (*spp); in spdsock_encode_proto()
1518 struct spd_portrange *spp; in spdsock_encode_port() local
1523 spp = (struct spd_portrange *)(base + offset); in spdsock_encode_port()
1524 spp->spd_ports_len = SPD_8TO64(sizeof (*spp)); in spdsock_encode_port()
1525 spp->spd_ports_exttype = ext; in spdsock_encode_port()
1526 spp->spd_ports_minport = port; in spdsock_encode_port()
1527 spp->spd_ports_maxport = port; in spdsock_encode_port()
1529 offset += sizeof (*spp); in spdsock_encode_port()