Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by Reverend Jim A guy from New York is driving through the southern bible belt when he sees two men putting up a sign that says "**Turn Yourself Around. The End Is Near**". He ignores it and drives on. A few moments laret the men hear a squeal of brakes followed by a loud splash. One man turns to the other and says, "Maybe it should just read **… Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by Dani OMG, I can't with the dad jokes. Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by Reverend Jim I bought my friend an elephant for his room. He said, "thank you." I said, "Don't mention it." Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by Pebble94464 Two elephants jump off a cliff. Boom boom! Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by Salem I found an advert for a really nice looking DeLorean car. I asked about the mileage, and they replied it was only used from time to time. Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by Dani A friend in the SEO industry (Jim Boykin) used to have a Delorean he bought off of EBay with the license plate TIMECAR. He’s since sold it, unfortunately. Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by MasoodDidThat Schrödinger’s cat walks into a bar. And doesn’t. Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by Reverend Jim Rex was a very stupid dog, except for one thing: he could play the kazoo. His owners, George and Mary Heel, exploited him shamelessly with several performances a day, but Rex just wagged his tail and kept tooting. Finally, the SPCA filed a complaint against his owners: “The Heels star a live witless hound of music.” Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by MasoodDidThat Why do programmers prefer dark mode? Because light attracts bugs. Re: Custom Media Server Hardware and Software Linux and Unix by Vince_6 I used Plex and a Mac for years to stream to my TV. When I switched to linux, PLex ran but couldn't find my media directories. I finally found a product called Emby. It has a server that runs and aps for many different divices. It even has one for my FireTV. Works great. Re: UDP problem with C++ sendto() --> C# ReceiveFrom() Programming Software Development by LizR UDP stuff is always harder to work with as you cant guarentee its arrival. Have you tried a packet sniffer on the recieving end to ensure its getting there? udp client/server Programming Software Development by learner_new > this is my udp server code #include<iostream> #include<arpa/inet.…;"ERROR writing to SOCKET"; } } >this is my udp client code #include<iostream> #include<arpa/inet… Udp Client and Server ... please help :) Programming Software Development by omarelmasry I found a code on several websites for a UDP client and server ... when I run the code of both … UDP problem with C++ sendto() --> C# ReceiveFrom() Programming Software Development by VRspace4 … = new Socket(m_listenEp.Address.AddressFamily, SocketType.Dgram, ProtocolType.Udp); m_UdpListenSocket.Bind(m_listenEp); m_sendEp = new System.Net.IPEndPoint(…); m_UdpSendSocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); m_UdpSendSocket.SendTo(msgBuffer, msgBuffer.Length, SocketFlags.None, m_sendEp); … UDP Port Forwarding Programming Software Development by Cogneter … modify Server application and it judges about packets' source by UDP's IEP. Server then stores IEPs and sends data itself…;; Console.WriteLine("-= Port Forwarder started. =-"); Console.WriteLine("UDP ports forwarded: 7777"); UDP1.BeginReceive(ReceiveDataUDP1, null); while (true… UDP Broadcast Over Internet Programming Software Development by Masood_786 … as s free lancer and have been tasked to implement UDP server (Broadcaster) over internet (Server machine has Static IP … receive from Static IP i.e from Server IP the udp packets. The Traffic would be simplex(one way only) …need to write that enable me to receive from server UDP packets. This is the client code that received broadcast… Re: UDP Port Forwarding Programming Software Development by sknake Normally you would fake the sender address for UDP packets but this has been disable in the win32 core … Re: UDP Port Forwarding Programming Software Development by Cogneter … packets" to these IPs. All being done via 7777 UDP port. But, as you understand, players send packets to external… Re: UDP Port Forwarding Programming Software Development by Cogneter … said, there are some programs like AUTAPF which succesfully forward UDP/TCP ports. Don't know whether they are written in… Re: UDP Broadcast Over Internet Programming Software Development by Topi Ojala … only address(is it?) the client is supposed to receive UDP-datagrams from, in this case it is perhaps acceptable. Usually… examples on the internet, try keywords such as [socket programming UDP client server C] I suggest you take a look at… Re: udp packets Hardware and Software Networking by s.w.a …concern the TCP, but my problem is with the UDP, that is because TCP had 3-way handshake …is comleted or not according to that. but in UDP there is no 3-way, so how to …inforce the client using UDP to be auth. , it said that the authintication … discard. so what is the 1st request packet in UDP? ,(while it is the SYN in TCP) and… Re: udp packets Hardware and Software Networking by predator78 …point exactly. There will be no authentication done with the UDP packets. The authentication should be handled some where else …before you start sending UDP packets if they are indeed that important to be … it was intended for will be "shutdown". UDP packets will not authenicate, that should be the job of… Re: udp packets Hardware and Software Networking by predator78 … the request packet. This explains the layout of a UDP request packet [URL="http://en.wikipedia.org/wiki/…User_Datagram_Protocol#Packet_structure"]udp packet structure[/URL]. So you see here there is … in this post shows exactly what is inside a UDP request packet. If this gives you any thoughts or… Re: udp packets Hardware and Software Networking by smferoz … not reliable that is true but when it comes to udp can be authenticated so for this i need to explain… authenticated and if the same file or folder on a UDP system is authenticated then it requires authentication to open the… Re: UDP Connections Programming Software Development by deepthought … sock = socket.socket( socket.AF_INET,socket.SOCK_DGRAM ) # UDP sock.connect((UDP_IP, UDP_PORT)) sock.sendto(bytes(MESSAGE,'ASCII'),(UDP_IP…sock = socket.socket( socket.AF_INET, # Internet socket.SOCK_DGRAM ) # UDP sock.bind( (UDP_IP_SERV,UDP_PORT_SERV) ) #while True: time.sleep(1) … Re: UDP File Transfer Question Programming Software Development by freesoft_2000 … everything right. Then again as you know that UDP packets are unreliable and sometimes fail to work and…new socket. But if you still want to use UDP you can check the below three threads on sending…datagrams respectively and entire java world tip expanation on UDP packets [url]http://javaalmanac.com/egs/java.net/SendDatagram… Re: UDP File Transfer Question Programming Software Development by actionwillspeak … everything right. Then again as you know that UDP packets are unreliable and sometimes fail to work and…new socket. But if you still want to use UDP you can check the below three threads on sending…datagrams respectively and entire java world tip expanation on UDP packets [url]http://javaalmanac.com/egs/java.net/SendDatagram… UDP Port forwarding Programming Software Development by Megalan … everyone, i have one simple question. How to port forward udp port? I've successfully forwarded tcp port (that was easy… just can't understand how i can do this for udp port. Maybe someone can give code example? ps i'm… UDP sending problem Programming Software Development by Mr. Blank Hi I'm working on a messenger that uses UDP and i can send a message once alright, but when … this is happening (not that i know that much about udp anyway), so if anyone could help out that would be… UDP traffic over WAN via CSharp Programming Software Development by chi-hawk I have a program that sends out UDP traffic via the usual way: The Server: [CODE=c#] private … sendSocket = null; ... sendSocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); iepSend = new IPEndPoint(IPAddress.Any, 4203); iepSend2 = new IPEndPoint(IPAddress…