No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
What is it that you are trying to send, is it just a quick "Hey I can connect to you" or is it more complex? Are you trying to do this as a console program, or windows forms? Each have their own benefits. Are you trying to do this over …
I threw your while loops inside the try statement. it would also be better if you blocked until a client connects, this would relieve some system resources, but it doesn't seem like this is that big of a project. [CODE] Socket sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); IPEndPoint iep = …
First you need to get your external IP address of your network. after that you need to Forward the port you want to use on your router to the IP address of the computer you are using. There are a couple of site to use to find your external IP …
I've been looking at your code, and it seems like as if your trying to send and receive in the same transmission. However because the server is trying to receive when there is nothing to recieve, because the client hasnt choosen the file they want to download, and error gets …
This is how i do it to store the local IPv4 IP address. This module checks for all of the IP addresses on all of the adapters and returns the first IP address that is not a loopback address. Then bind your socket to the LanAddress IPAddress [code=c#] public IPAddress …
This sounds like an interesting project. I'll be able to help you with something like this. However it's going to be a bit of time before i can get something started for you. are you using Visual c# 2005 or 2008? do the commas need to be automatically placed in …
I'm bored, if there's any socket programming that someone needs post a comment, and I'll see what i can come up with. :)
if you encompass your cd234 with [] you can find them easier, then when reading information to populate whatever if the first char is "[" then it's the end of the list for cd234, and stop populating. for example your new file structure could be: [cd234] some data more data …
The End.
Acedia