Sponsored Content
Special Forums IP Networking Link two sockets to eachother Post 302254131 by Eckhardt on Monday 3rd of November 2008 05:52:27 PM
Old 11-03-2008
Question Link two sockets to eachother

Hi, I'm programming a system in C++ which will send messages from a server to an ip-camera (both are connected to the system). What it does now is take the message from the server-socket and puts it in the camera-socket.

The thing is, after that the camera is going to send a video stream which needs to go to the server. Unlike the server-messages, this is a continuous stream, so I can't really take messages out of the camera-socket and put them in the server-socket. What I would really want is to "connect" the camera-socket to the server-socket so that what 'comes out of the camera-socket' goes directly in the server-socket. Is there a nice way to do this? If not, does anyone have an idea how I could handle this?

I'm using TCP sockets and everything is HTTP based btw.

Thanks alot for any help!
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Differences between hard link and soft link

Hi all! I'd like to know the differences between hard links and soft links. I've already read the ln manpage, but i'm not quite sure of what i understood. Does a hard link sort of copy the file to a new name, give it the same inode number and same rights? What exactly should I do to do this:... (3 Replies)
Discussion started by: penguin-friend
3 Replies

2. UNIX for Dummies Questions & Answers

Difference between hard link and soft link in unix

Hi All, Can any one please explain me what is the difference between hard link and soft link in UNIX. Thanks in advance Raja Chokalingam. (2 Replies)
Discussion started by: RAJACHOKALINGAM
2 Replies

3. UNIX for Dummies Questions & Answers

need some info about symbolic link and hard link

hello folks how y'all doin well i have some questions about symbolic link and hard link hope some one answer me i open terminal and join as root and i wrote ln -s blah blah then i wrote ls i see red file called blah blah but didn't understand what is this can some one explain and... (2 Replies)
Discussion started by: detective linux
2 Replies

4. UNIX for Dummies Questions & Answers

Difference between hard link and soft link

Hi Experts, Please help me out to find out difference between a hard link and a soft link. I am new in unix plz help me with some example commands ( for creating such links). Regards S.Kamakshi :) (2 Replies)
Discussion started by: kamakshi s
2 Replies

5. Programming

putting numbers behind eachother

I want to make a program where you have to insert binary numbers like this: do { iBinary = getche(); }while(iBinary == 1 || iBinary == 0); after you get the numbers I want them to be placed behind eachother so you will get: input: 1 1 0 1 output: 1101 (7 Replies)
Discussion started by: metal005
7 Replies

6. Programming

g++ fails to link to static library when compilation and link in single command

Hello All, I've encountered a strange behaviour from g++ that doesn't make sense to me. Maybe you can shed some light on it: I have a bunch of source files and want to compile them and link them with a static library liba.a located in /usr/local/lib64 into an executable Approach 1 works... (0 Replies)
Discussion started by: magelord
0 Replies

7. UNIX for Dummies Questions & Answers

[Solved] Symbolic link not allowed or link target not accessible

Hi everybody, I read about treads realted to this issue but they did not resovle issue given below. Please help me resolve issue given below I have html file under /srv/www/htdocs/actual_folder ls actual_folder/ test.html and following link works... (0 Replies)
Discussion started by: newbielgn
0 Replies

8. Solaris

/var/adm/messages (interface turned off/restored) and link up & link down message.

Hi All I am facing an issue with our new solaris machine. in /var/adm/messages root@Prod-App1:/var/tmp# root@Prod-App1:/var/tmp# root@Prod-App1:/var/tmp# cat /var/adm//messages Apr 20 03:10:01 Prod-App1 syslogd: line 25: WARNING: loghost could not be resolved Apr 20 08:24:18 Prod-App1... (0 Replies)
Discussion started by: javeedkaleem
0 Replies

9. Solaris

/var/adm/messages (insterface turned off/restored) and link up & link down message.

Hi All I am facing an issue with our new solaris machine. in /var/adm/messages Apr 22 16:43:05 Prod-App1 in.routed: interface net0 to 172.16.101.1 turned off Apr 22 16:43:33 Prod-App1 mac: NOTICE: nxge0 link up, 1000 Mbps, full duplex Apr 22 16:43:34 Prod-App1 mac: NOTICE: nxge0 link... (2 Replies)
Discussion started by: javeedkaleem
2 Replies

10. Solaris

Guest LDOMS on same subnet cant ping eachother

Hi all, New to this forum. I have just been reading through a historical thread about some issues with IPMP. Some tips from "Peasant" where very useful. Please see below "Just couple of more hints regarding VM. For VDS, use one VDS - one guest LDOM, don't put everything in primary-vds.... (9 Replies)
Discussion started by: selectstar
9 Replies
STREAM_SOCKET_RECVFROM(3)						 1						 STREAM_SOCKET_RECVFROM(3)

stream_socket_recvfrom - Receives data from a socket, connected or not

SYNOPSIS
string stream_socket_recvfrom (resource $socket, int $length, [int $flags], [string &$address]) DESCRIPTION
stream_socket_recvfrom(3) accepts data from a remote socket up to $length bytes. PARAMETERS
o $socket - The remote socket. o $length - The number of bytes to receive from the $socket. o $flags - The value of $flags can be any combination of the following: Possible values for $flags +------------+---------------------------------------------------+ | | | |STREAM_OOB | | | | | | | Process OOB ( out-of-band) data. | | | | | | | |STREAM_PEEK | | | | | | | Retrieve data from the socket, but do not con- | | | sume the buffer. Subsequent calls to fread(3) or | | | stream_socket_recvfrom(3) will see the same data. | | | | +------------+---------------------------------------------------+ o $address - If $address is provided it will be populated with the address of the remote socket. RETURN VALUES
Returns the read data, as a string EXAMPLES
Example #1 stream_socket_recvfrom(3) example <?php /* Open a server socket to port 1234 on localhost */ $server = stream_socket_server('tcp://127.0.0.1:1234'); /* Accept a connection */ $socket = stream_socket_accept($server); /* Grab a packet (1500 is a typical MTU size) of OOB data */ echo "Received Out-Of-Band: '" . stream_socket_recvfrom($socket, 1500, STREAM_OOB) . "' "; /* Take a peek at the normal in-band data, but don't comsume it. */ echo "Data: '" . stream_socket_recvfrom($socket, 1500, STREAM_PEEK) . "' "; /* Get the exact same packet again, but remove it from the buffer this time. */ echo "Data: '" . stream_socket_recvfrom($socket, 1500) . "' "; /* Close it up */ fclose($socket); fclose($server); ?> NOTES
Note If a message received is longer than the $length parameter, excess bytes may be discarded depending on the type of socket the mes- sage is received from (such as UDP). Note Calls to stream_socket_recvfrom(3) on socket-based streams, after calls to buffer-based stream functions (like fread(3) or stream_get_line(3)) read data directly from the socket and bypass the stream buffer. SEE ALSO
stream_socket_sendto(3), stream_socket_client(3), stream_socket_server(3). PHP Documentation Group STREAM_SOCKET_RECVFROM(3)
All times are GMT -4. The time now is 10:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy