Searched refs:packet (Results 51 - 75 of 94) sorted by relevance

1234

/illumos-gate/usr/src/lib/krb5/kadm5/clnt/
H A Dchangepw.c50 krb5_data *packet);
54 krb5_data *packet, int *result_code,
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DRequestHandler.java56 private DatagramPacket packet = null; // Packet for datagram requests. field in class:RequestHandler
122 // Request arrived via datagram. Set the incoming packet, spawn
137 packet = packet_in;
138 clientAddr = packet.getAddress();
139 port = packet.getPort();
237 byte[] inbuf = packet.getData();
439 // Format the outgoing packet.
655 * @param dis The input stream containing the packet.
709 // otherwise, the packet is from an earlier version
732 // If we've come via TCP, clear the packet lengt
[all...]
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dfsys_tftp.c141 tr = (struct tftp_t *)&nic.packet[ETH_HLEN];
195 /* the packet does not get */
290 tr = (struct tftp_t *) &nic.packet[ETH_HLEN];
372 /* This ensures that the packet does not get processed as
477 /* Send the packet. */
615 /* Construct the TFTP request packet. */
626 /* Save the TFTP packet so that we can reopen the file later. */
699 buf = (char *)&nic.packet;
H A Dpnic.c135 * have to read out the packet, otherwise it's lost forever.
142 /* There is a packet ready. Return 1 if we're only checking. */
145 /* Retrieve the packet */
147 nic->packet, ETH_FRAME_LEN, &length )
166 printf ( "pnic_transmit: packet too large\n" );
170 /* Assemble packet */
H A Depic100.c292 * This transmits a packet.
296 * unsigned short s: size of the data-part of the packet.
297 * char *p: the data for the packet.
356 * This receives a packet from the network.
360 * returns: 1 if a packet was received.
363 * returns the packet in the array nic->packet.
364 * returns the length of the packet in nic->packetlen.
381 /* We own the next entry, it's a new packet. Send it up. */
389 printf("epic_poll: Giant packet\
[all...]
H A D3c90x.c466 /*** a3c90x_transmit: exported function that transmits a packet. Does not
470 *** s - size of the non-header part of the packet that needs transmitted;
471 *** p - the pointer to the packet data itself.
501 /** Set the ethernet packet type **/
519 /** Send the packet **/
597 *** for a packet, and if it sees none, returns 0. This routine should
598 *** copy the packet to nic->packet if it gets a packet and set the size
599 *** in nic->packetlen. Return 1 if a packet wa
[all...]
H A Ddavicom.c439 it transmit a packet and wait complete every time. */
608 /* copy packet to working buffer */
613 memcpy(nic->packet, rxb + rxd_tail * BUFLEN, nic->packetlen);
640 /* Clear the missed-packet counter. */
689 /* Clear the missed-packet counter. */
H A De1000.c91 static char packet[2096]; variable
3361 rd->buffer_addr = virt_to_bus(&packet);
3440 /* return true if there's an ethernet packet ready to read */
3441 /* nic->packet should contain data on return */
3451 // printf("recv: packet %! -> %! len=%d \n", packet+6, packet,rd->Length);
3452 memcpy (nic->packet, packet, rd->length);
3467 /* send the packet t
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/ipp/
H A Dipp.c56 static int packet(uintptr_t, uint_t, int, const mdb_arg_t *);
540 packet( function
700 "display ipp_packet structure", packet },
/illumos-gate/usr/src/uts/common/ipp/meters/
H A Dtswtclddi.c494 tswtcl_invoke_action(ipp_action_id_t aid, ipp_packet_t *packet) argument
502 mp = ipp_packet_get_data(packet);
506 /* tswtcl packet as configured */
510 return (ipp_packet_next(packet, next_action));
H A Dtokenmtddi.c681 tokenmt_invoke_action(ipp_action_id_t aid, ipp_packet_t *packet) argument
689 mp = ipp_packet_get_data(packet);
693 /* meter packet as configured */
697 return (ipp_packet_next(packet, next_action));
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ndpd/
H A Dmain.c66 static uint64_t packet[(IP_MAXPACKET + 1)/8]; variable
127 * Output a preformated packet from the packet[] buffer.
135 cc = sendto(sock, (char *)packet, size, flags,
180 struct nd_router_solicit *rs = (struct nd_router_solicit *)packet;
181 char *pptr = (char *)packet;
204 * If there are too many prefix options to fit in one packet multiple
211 char *pptr = (char *)packet;
243 /* Feed packet back in for router operation */
250 pptr = (char *)packet
[all...]
/illumos-gate/usr/src/uts/common/io/e1000g/
H A De1000g_main.c1660 rx_sw_packet_t *packet, *next_packet; local
1665 packet = rx_data->packet_area;
1666 while (packet != NULL) {
1667 next_packet = packet->next;
1668 e1000g_free_rx_sw_packet(packet, B_TRUE);
1669 packet = next_packet;
2061 /* Clean the pending rx jumbo packet fragment */
2119 p_tx_sw_packet_t packet; local
2134 packet = (p_tx_sw_packet_t)QUEUE_GET_HEAD(&tx_ring->used_list);
2135 while (packet !
[all...]
H A De1000g_sw.h557 * associated with every packet to be transmitted. It stores the
708 * Software packet structures definitions
772 * Software packet structures definitions
920 * Rx and Tx packet count for interrupt adaptive setting
1042 void e1000g_free_rx_sw_packet(p_rx_sw_packet_t packet, boolean_t full_release);
1048 void e1000g_free_tx_swpkt(p_tx_sw_packet_t packet);
1053 void e1000g_rxfree_func(p_rx_sw_packet_t packet);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/
H A Drtquery.c81 char packet[MAXPACKETSIZE+MAXPATHLEN]; member in union:__anon268
88 char packet[MAXPACKETSIZE+1024]; member in union:__anon269
549 * Handle an incoming RIP packet.
773 * Determine which physical interface this packet was received on by
/illumos-gate/usr/src/uts/common/io/
H A Dneti_impl.c328 net_inject(net_handle_t info, inject_t style, net_inject_t *packet) argument
336 return (info->netd_info.netp_inject(info, style, packet));
/illumos-gate/usr/src/uts/intel/io/drm/
H A Dr300_cmdbuf.c397 * Emit a clear packet from userspace.
440 /* carefully check packet contents */
449 "while processing 3D_LOAD_VBPNTR packet.\n",
460 "while processing 3D_LOAD_VBPNTR packet.\n",
469 DRM_ERROR("Malformed 3D_LOAD_VBPNTR packet "
475 /* all clear, output packet */
578 * Fixme !! This simply emits a packet without much checking.
585 /* Is it packet 3 ? */
600 /* Is it a packet type we know about ? */
614 /* triggers drawing using in-packet verte
[all...]
/illumos-gate/usr/src/boot/sys/boot/i386/boot0/
H A Dboot0.S68 * (called 'packet') or CHS mode, whether to force a drive number,
160 .set USEPACKET, 0x80 # the 'packet' flag
559 * Don't use packet mode for a floppy.
571 testb $USEPACKET,_FLAGS(%bp) # Use packet interface?
581 orb $0x40,%ah # Use disk packet
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/
H A Dinput.c68 * Read a packet and passes it to rip_input() for processing.
79 iov.iov_base = packet;
125 * Process a newly received packet.
150 * If the packet is recevied on an interface with IFF_NORTEXCH flag set,
151 * we ignore the packet.
156 "Ignore received RIPng packet on %s "
166 "Bad version number %d in packet from %s\n",
175 "Non-zero reserved octets found in packet from "
463 * the packet arrived.
487 "Bad command %d in packet fro
[all...]
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/
H A Dlm.h426 * free buffer pool. If 'packet' is null, all buffers in the free poll
427 * will be posted; otherwise, only the 'packet' will be posted. */
432 struct _lm_packet_t *packet,/* optional. */
436 * This routine sends the given packet. Resources required to send this
443 struct _lm_packet_t *packet,
450 * @param packet
457 struct _lm_packet_t *packet);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/traceroute/
H A Dtraceroute.c107 * LBNL bug fixed: in LBNL traceroute 'uchar_t packet[512];'
108 * Not sufficient to hold the complete packet for ECHO REPLY of a big probe.
113 static uint64_t packet[(IP_MAXPACKET + 1)/8]; /* received packet */ variable
504 "packet length", 0, -1);
755 * Calculate the packet length to be used, and check against the valid range.
761 int minpacket; /* min ip packet size */
775 * destination host. When this packet is sent, on the wire
790 /* take care of the packet length calculations and checks */
798 plen = minpacket; /* minimum sized packet */
[all...]
/illumos-gate/usr/src/uts/sun4u/lw8/io/
H A Dsgfru.c937 tdatap = sgfru_packet_unpad(&append.payload.fru_info, &append.packet,
1021 /* copyout raw packet data, aka the payload */
1121 * Used for fru_delete_[segment|packet].
1388 * added segment or packet, and an updated parent handle.
1483 * Used to copy in segment handle, packet and payload data from user.
1502 app->packet = app32.packet;
1519 app->packet.handle, app->packet.tag);
1803 * Used to pad a Java (SCAPP) packet, i
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DmDNSPosix.c139 // mDNS core calls this routine when it needs to send a packet.
207 LogMsg("mDNSPlatformSendUDP got error %d (%s) sending packet to %#a on interface %#a/%s/%d",
210 LogMsg("mDNSPlatformSendUDP got error %d (%s) sending packet to %#a", errno, strerror(errno), dst);
223 DNSMessage packet; local
237 packetLen = recvfrom_flags(skt, &packet, sizeof(packet), &flags, (struct sockaddr *) &from, &fromLen, &packetInfo, &ttl);
246 // convince mDNS Core that this isn't a spoof packet.
248 // packet arrived as a multicast and, if so, set its
256 // no way to tell the destination address or interface this packet arrived on,
268 // We only accept the packet i
[all...]
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
H A Dk5-int.h1551 absolute limit on the UDP packet size. */
2284 krb5_data *ap_req, char *passwd, krb5_data *packet);
2287 krb5_data *packet, int *result_code,
2294 krb5_data *ap_req, krb5_principal targetprinc, char *passwd, krb5_data *packet);
2297 krb5_data *packet, int *result_code,
/illumos-gate/usr/src/boot/sys/boot/i386/pmbr/
H A Dpmbr.s127 # a EDD packet on the stack and passing it to the BIOS. Trashes %ax and %si.

Completed in 192 milliseconds

1234