c# - creating ports and initiating communication between client and server -


what need server listens 5060 port , when client sends data port server should open port ( port after 1250 believe ) , forward clients data port keeping 5060 idle can perform same function next client

so need server a) open multiple ports 1 each client b) voice data client , able send voice data client

i m looking hardware specs , other such details of scenario dont have time make such program myself if theres code can run directly ( both server , client side ) on visual studio .net 2010 perform these tasks extremely helpful

thanks alot in advance

sounds typical tcp socket server implementation. don't know c# i'm sure there's mapping in there of berkeley sockets / winsock listen() , accept() functions, you're looking @ raw sockets api level. imagine should looking tcpserver or tcpsocket class (or similar) in .net library.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -