Displaying 7 results from an estimated 7 matches for "receive_packet".
2005 Apr 26
2
libsmb/nmblib.c:receive_packet(1018)
...had to stop the samba daemons.
ran a ps -ef | grep smb
found many smbd processes running. had to pkill the process, and then re-start samba to make the shares
available. Running 3.012
Can't find anything anywhere.
Any help would be appreciated.
[2005/04/26 16:02:21, 0] libsmb/nmblib.c:receive_packet(1018)
select returned -1, errno = Invalid argument (22)
[2005/04/26 16:02:21, 0] libsmb/nmblib.c:receive_packet(1018)
select returned -1, errno = Invalid argument (22)
[2005/04/26 16:02:21, 0] libsmb/nmblib.c:receive_packet(1018)
select returned -1, errno = Invalid argument (22)
[2005/04/26 1...
2008 Dec 04
1
Xen 3.3.0 PCI passthrough with pciback.hide
...rwctrl[76180000] dma_mask[64-bit]
However when I try to bring up the interface using
#ifup eth1
I get the following:
get owner for dev 0 get 1
error enable msi for guest 1 status fffffff0
SIOCSIFFLAGS: Function not implemented
Sending on LPF/eth1/00:1e:c9:53:53:a3
Sending on Socket/fallback
receive_packet failed on eth1: Network is down
DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 4
send_packet: Network is down
Dom-U dmesg shows the following:
pci frontend enable msi failed for dev 2:0
pci frontend enable msi failed for dev 2:0
pci frontend enable msi failed for dev 2:0
pci frontend ena...
2008 Feb 07
6
Buffer flushing
Short question: is there way to tell EM to actually send data after
send_data call?
I''m building a file transferring app. I send Mashal.dump''ed metadata
first, and then - the file contents (chunked). I found a silly bug:
receive_data() gets marshalled metadata and the first chunk of the
file in a single variable.
Like that:
c1.send_data("meta")
2007 Sep 02
1
Virtual Box: br0 not resolving: No DHCPOFFERS
...interface eth0.IPv6 with address fe80::230:48ff:fe78:8e92.
Aug 31 21:14:40 rn1 avahi-daemon[3207]: Interface eth0.IPv4 no longer
relevant for mDNS.
Aug 31 21:14:40 rn1 avahi-daemon[3207]: Leaving mDNS multicast group on
interface eth0.IPv4 with address 192.168.255.10.
Aug 31 21:14:40 rn1 dhcpd: receive_packet failed on eth0: Network is down
Aug 31 21:14:40 rn1 avahi-daemon[3207]: Withdrawing address record for
fe80::230:48ff:fe78:8e92 on eth0.
Aug 31 21:14:40 rn1 avahi-daemon[3207]: Withdrawing address record for
192.168.255.10 on eth0.
Aug 31 21:14:40 rn1 kernel: device eth0 left promiscuous mode
Aug...
2003 Jan 22
1
kjournald oops
...gt;
Trace; c01bedfd <submit_bh+4d/70>
Trace; c01bef97 <ll_rw_block+177/1c0>
Trace; c016e4fd <journal_brelse_array+1d/30>
Trace; c016d65b <journal_commit_transaction+3ab/10f2>
Trace; c02227c9 <netif_rx+a9/1d0>
Trace; c021eb2f <alloc_skb+ef/1c0>
Trace; c01c5cd7 <receive_packet+2c7/3e0>
Trace; c0170236 <kjournald+136/200>
Trace; c01700e0 <commit_timeout+0/10>
Trace; c0105676 <kernel_thread+26/30>
Trace; c0170100 <kjournald+0/200>
Code; c0130956 <__free_pages_ok+286/2a0>
00000000 <_EIP>:
Code; c0130956 <__free_pages_ok+286/2a0>...
2007 Mar 09
0
Wireless fails with Netgear MA401 card.
...lhost kernel: eth1: Error -110 configuring card
Mar 9 09:03:21 localhost ifup: SIOCSIFFLAGS: Connection timed out
Mar 9 09:03:21 localhost dhclient: DHCPREQUEST on eth1 to
255.255.255.255 port 67
Mar 9 09:03:21 localhost dhclient: send_packet: Network is down
Mar 9 09:03:21 localhost dhclient: receive_packet failed on eth1:
Network is down
Mar 9 09:03:25 localhost dhclient: DHCPREQUEST on eth1 to
255.255.255.255 port 67
Mar 9 09:03:25 localhost dhclient: send_packet: Network is down
Mar 9 09:03:32 localhost dhclient: DHCPDISCOVER on eth1 to
255.255.255.255 port 67 interval 5
Mar 9 09:03:32 local...
2010 Sep 20
0
No subject
...20
+ outpkt->flag_bits =3D inpkt->flag_bits;
inpkt =3D outpkt;
-
- origlen -=3D MTU/64 + 20;
}
=20
inpkt->priority =3D 0;
=20
- if(!inpkt->data[12] && !inpkt->data[13])
- mtu_probe_h(n, inpkt, origlen);
+ if(inpkt->flags.pmtud)
+ mtu_probe_h(n, inpkt);
else
receive_packet(n, inpkt);
}
=20
void receive_tcppacket(connection_t *c, char *buffer, int len) {
vpn_packet_t outpkt;
- memset(&outpkt.flags, 0, sizeof(outpkt.flags));
+ outpkt.flag_bits =3D 0;
=20
outpkt.len =3D len;
if(c->options & OPTION_TCPONLY)
@@ -420,10 +424,12 @@
return;
}
=20
- if...