It just happens every 10 minutes ... nothing much going on from my side, just echolink updates

Here what sends the message -

int ast_prod(struct ast_channel *chan)

{

        struct ast_frame a = { AST_FRAME_VOICE };

        char nothing[128];

        /* Send an empty audio frame to get things moving */

        if (chan->_state != AST_STATE_UP) {

                if (option_debug)

                        ast_log(LOG_DEBUG, "Prodding channel '%s'\n", chan->name);

                a.subclass = chan->rawwriteformat;

                a.data = nothing + AST_FRIENDLY_OFFSET;

                a.src = "ast_prod";

                if (ast_write(chan, &a))

                        ast_log(LOG_WARNING, "Prodding channel '%s' failed\n", chan->name);

        }

        return 0;

}

I don't have the tools to find where some routine is exercising this every 10 minutes is it related to echolink?


Ken


> -----Original Message-----

> From: Jim Duuuude [mailto:telesistant@hotmail.com]

> Sent: Sunday, March 07, 2010 3:12 PM

> To: ke2n@cs.com; app_rpt mailing list

> Subject: RE: [App_rpt-users] prodding channel

>

>

>

> IDFK  (stands for I dont Know, the 'F' is silent)

>

> I have never seen this behavior. When does it do it?

>

> JIM

> ________________________________

> > From: ke2n@cs.com

> > To: App_rpt-users@qrvc.com

> > Date: Sun, 7 Mar 2010 14:06:58 -0500

> > Subject: [App_rpt-users] prodding channel

> >

> >

> >

> >

> >

> >

> >

> >

> >

> >

> >

> >

> >

> >

> >

> >

> >

> > I have updated to version 0.216 yesterday – it is

> > running well on my setup, except I am seeing some warning messages

> that I do

> > not recall seeing before

> >

> >

> >

> >

> >

> >

> >

> > WARNING[19250]: channel.c:2590 ast_prod: Prodding channel

> > 'Zap/pseudo-470869475' failed

> >

> >

> >

> >

> >

> >

> >

> > What does it mean?

> >

> >

> >

> >

> >

> >

> >

> > Ken Jamrogowicz

> >

> >

> >

> >

> >

> >

> >

> > I guess I should mention that I have been running a 64 bit

> > compile of app-rpt for a couple of weeks now…

> >

> >

>                       =