<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hello,<br>
<br>
I am not sure if I totally understand the question but if your looking
to stream the connection you could create a simple bash script like this<br>
<br>
<br>
#!/bin/bash<br>
while true; do<br>
     tail -f /var/log/asterisk/cdr-custom/Master.csv | nc -p 1024 -l<br>
done<br>
<br>
There probably is a better solution then this, but this will get you
going<br>
<br>