Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can i write a socket program in c to accept request from vlc player. Assume that i have a vlc player requesting video content from a address say 192.168.1.2 to port 5000. The server program is outputting the video to 5000 of the same ip address.

share|improve this question
VLC can be its own streaming server. What are you trying to accomplish? wiki.videolan.org/Documentation:Streaming_HowTo – Marc B Aug 15 '11 at 15:59
i have to do some processing before streaming to other clients. i cannot store the content on to the disk. I retrieve content from a multicast address do some processing then have to deliver it the client. so basically i act as a router – iwant2learn Aug 15 '11 at 16:05

1 Answer

if you "accept" on a server socket it blocks until a new connection comes in.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.