|
Does HTTPS use TCP or UDP?
Started by Steven on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Wonder if a default port service run on tcp or udp, you can look at /etc/services on a linux machine of fact HTTPS over TCP and UDP are both defined as "well known" by IANA and have reserved port for UDP....
|
|
Hi there,
Can anyone help, i trying to figure what i need to do, i have been given the tasks of writing a server and a client in TCP (UDP). basically multiple clients will connect to the server.. and the server sends MESSSAGES to the client.
I have no...
Started by mark smith on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
UDP is connectionless and UDP for....
2 peers will have a dedicated clients can connect to that port (think of a HTTP server and browsers).
TCP is connection oriented.
On the distinction between TCP and UDP.
|
|
TCP or UDP. I'm not sure which to choose to forward.
I want to forward for games like BF3, Minecraft, etc etc. Should I have it UDP or TCP? I've checked online and I'm not sure how to choose
Started by shafin25 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at blockland):
Usually it's both
I know for Xbox Live, two ports are UDP only, and the other two.
Are both They usually state what ports and what to do (UDP and/or TCP)
Otherwise check websites likeBoth, I believe.
|
Ask your Facebook Friends
|
I am trying to get a handle on what happens when a server publishes (over tcp, udp, etc.) faster than a client can consume the data.
Within a program I understand that if a queue sits between the producer and the consumer, it will start to get larger....
Started by Shahbaz on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
In case of UDP block on a full buffer just....
With TCP, this cannot happen.
Back with TCP, how your server one socket running any others out of buffer space.
Unless you have built some form of reliable protocol over basic UDP.
|
|
Hello.
I'm testing NAT penetration code and need a symmetric NAT. I have configured FreeBSD with PF, very simple rule:
# rl0 in WAN on DHCP, sk0 is LAN with computers behind this NAT. nat on rl0 from sk0:network to any -> (rl0)
This works great, NAT...
Started by Eye of Hell on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
With nat rules, the static-port option prevents pf from sk0:network to any....
Nat on rl0The static-port option should do what you want.
Thus giving you a rule of.
(4) from modifying the source port on TCP and UDP packets.
|
|
One of the thing that current Windows application does is that it writes out information to a hardware device via a UDP message. We are considering porting the application to web-based.
I checked Silverlight, and that doesn't allow UDP. We don't want ...
Started by Vaibhav on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Other than that, you can only use TCP to be a way for a page on a client browser to write to a UDP stream on that client machine without.
For tcp connections that forwards the data to the udp client.
|
|
So this is a tutorial for the basic making of mmo. Im using an OCX file that's will make it easier for you. and yes, you can use the based Tcp and udp that come with your c#. But this OCX it's a little more user friendly.
First, downlaod the OCX:
http...
Started by ShowLoco on
, 17 posts
by 10 people.
Answer Snippets (Read the full thread at facepunch):
Every commercial MMO uses TCP, I wouldn't recommend using UDP why can't you just use UDP this almost made sense Nighley posted: every commercial MMO uses TCP, I wouldn't recommend System.Net.Sockets instead of ....
Are broken.
|
|
Depending on the Microsoft Web sites, sometimes they mentionned for the Lync Mobile Push Notifications to open Outbound 5223 TCP or Outbound 5223 UDP.
http://community.office365.com/en-us/w/lync/ensuring-your-network-works-with-lync-online.aspx
http:/...
Started by Francois Champagne on
, 7 posts
by 3 people.
Answer Snippets (Read the full thread at office365):
I understand the Inbound....
For more information, please refer Josephine.
If push notifications fail when the user is connected over Wi-Fi, inbound port 5223 (TCP) must be open to the device.
Hi Francois,
It is TCP for port 5223.
|
|
On Wed, 8 Oct 2008 18:07:58 +0200, "Q" <no@spam.pl
What ports (tcp? udp?) do I have to forward on my router
to play unreal tournament (old version) as server?
Started by Q on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
Sysinternals TCP/UDP viewer shows
that UnrealTournament.exe opens:
UDP 7777 *:*
UDP 7778 *:*
UDP 8777 *:*
TCP 8080 0 LISTENING (UT WebServer)
but when to forward....
Is (must be:) good enough
and I don't like DMZ.
|
|
I currently have a small Python script that I'm using to spawn multiple executables, (voice chat servers), and in the next version of the software, the servers have the ability to receive heartbeat signals on the UDP port. (There will be possibly thousands...
Started by ThantiK on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What you'll have to do is have one UDP master program that handles on different ports, named pipes....
All UDP communication over the one port, and communicates with your servers in another way (UDPI don't think this is possible.
|