search for: s_pxenv_udp_writ

Displaying 3 results from an estimated 3 matches for "s_pxenv_udp_writ".

Did you mean: s_pxenv_udp_write
2009 May 24
1
Sending UDP packets from comboot
...What i want to do is: Prompt the user for 2 values, desired hostname and a "pin" (just a number) and send this information over UDP to my server The problem is not the user input but the UDP part. I've tried to change the code from the post of jesse barker (6.1.2007): // code start s_PXENV_UDP_WRITE args; memset(&args, 0, sizeof(args)); args.ip = inet_addr("255.255.255.255"); // inet_addr working here? args.gw = inet_addr("0.0.0.0"); args.src_port = 4711; args.dst_port = 4799; args.buffer_size = <some sizeof() code> args.buffer = <some stuff to put my data i...
2013 Mar 28
1
Makefile race condition with parallel make
When attempting to build syslinux in parallel (make -j5), I encountered the following error at the end: rm -f liblpxelinux.a ar cq liblpxelinux.a rawcon.o ./fs/pxe/dhcp_option.o ./fs/pxe/pxe.o ./fs/pxe/tftp.o ./fs/pxe/urlparse.o ./lwip/src/netif/ethernetif.o ./lwip/src/netif/etharp.o ./lwip/src/netif/slipif.o ./lwip/src/netif/ppp/md5.o ./lwip/src/netif/ppp/randm.o ./lwip/src/netif/ppp/chpms.o
2009 May 28
1
Message 11 Syslinux Digest, Vol 74, Issue 24(Re: PXEboot trouble with Soekris 4826 (Miller, Shao)
...for 2 values, desired hostname and > a "pin" (just a number) and send this information > over UDP to my server > The problem is not the user input but the UDP part. > > I've tried to change the code from the post of jesse barker (6.1.2007): > > // code start > s_PXENV_UDP_WRITE args; > > memset(&args, 0, sizeof(args)); > > args.ip = inet_addr("255.255.255.255"); // inet_addr working here? > args.gw = inet_addr("0.0.0.0"); > args.src_port = 4711; > args.dst_port = 4799; > args.buffer_size = <some sizeof() code> > ar...