Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello my friends /
I want to write a program that will send messages between two computers with Ftkp protocols / ip / looked for but did not result
I program with Visual C # application
Grateful
Posted
Comments
[no name] 22-Sep-12 8:51am    
What is Ftkp and where did you get it?

1 solution

I have never heard of FTKP, but was also not able to find anything on Google about it.

If you made a typo and meant FTP, take a look at this article: FTP client library for C#[^]

If it is a replacement for UDP/TCP, you will need to implement it yourself on top of a raw Socket. See http://msdn.microsoft.com/en-us/library/system.net.sockets.socket(v=vs.100).aspx[^] for more information about that.

If it is a protocol on top of TCP you can use a TcpClient as base, and work upon that: http://msdn.microsoft.com/en-us/library/system.net.sockets.tcpclient(v=vs.100).aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900