<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Yedidia Amit wrote:
<blockquote
 cite="midEB34B5A39CF26E408490ED9279BF10A71D367D@mailesl5.esl.corp.elbit.co.il"
 type="cite">
  <meta http-equiv="Content-Type" content="text/html; ">
  <meta name="Generator"
 content="MS Exchange Server version 6.5.7651.59">
  <title>RTP sink to serial</title>
  <span lang="en-us"></span><span lang="en-us"><font face="Arial"
 size="2">I want to to send RTP packets (RTP header + payload after
packetization) to a serial port.</font></span>
  <p dir="ltr"><span lang="en-us"><font face="Arial" size="2">From my
experience with Live I figure that using socket_pair will be a good
solution.</font></span></p>
  <p dir="ltr"><span lang="en-us"><font face="Arial" size="2">In that
way I will be able to use the current code to send the data into the
socket, and on the other side I will write some listener that will recv
from the socket and&nbsp;&nbsp; transmit it using the serial port.</font></span></p>
</blockquote>
<br>
Just a random thought, which might save you having to have this
IP-to-serial conversion process...&nbsp; I don't know whether you've got
control of the other end of the serial line, but could you not just set
up a SLIP interface and send the RTP over that?&nbsp;&nbsp; The Live555 code
would just see it as a normal IP interface.&nbsp; You'd need to do this at
both ends, but you could then have a standard
UDP socket listener at the receiver end to receive the RTP packets.<br>
<br>
On Linux, see `man slattach` and
<a class="moz-txt-link-freetext" href="http://www.informit.com/library/content.aspx?b=red_hat_linux7&seqNum=62">http://www.informit.com/library/content.aspx?b=red_hat_linux7&amp;seqNum=62</a><br>
<br>
Even if you couldn't do this at the remote end, SLIP is a really simple
protocol which you could implement yourself - see:&nbsp;
<a class="moz-txt-link-freetext" href="http://tools.ietf.org/html/rfc1055">http://tools.ietf.org/html/rfc1055</a><br>
<br>
Regards<br>
<br>
Paul<br>
--<br>
Paul Clark<br>
Packet Ship Technologies Limited<br>
<a class="moz-txt-link-freetext" href="http://www.packetship.com">http://www.packetship.com</a><br>
<br>
</body>
</html>