search for: oh323_pvt

Displaying 2 results from an estimated 2 matches for "oh323_pvt".

2003 Jul 01
0
chan_h323.c compile error
...level: chan_h323.c:1601: warning: initialization from incompatible pointer type make: *** [chan_h323.o] Error 1 --- chan_h323.c 2003-07-01 08:09:33.000000000 -0400 +++ chan_h323.c.mod 2003-06-30 10:25:30.000000000 -0400 @@ -684,7 +684,7 @@ /* Keep track of stuff */ memset(p, 0, sizeof(struct oh323_pvt)); - p->rtp = ast_rtp_new(NULL, NULL); + p->rtp = ast_rtp_new(NULL, NULL, 1, 0); if (!p->rtp) { ast_log(LOG_WARNING, "Unable to create RTP session: %s\n", strerror(errno)); free(p);
2003 Aug 19
0
# Transfer context problem
...vvvc is "unknown extension 'X' in context ' ' " or something to that effect. What I've found is the following: line 668 of chan_h323.c (cvs from Tuesday 08/19/2003 around 11:45am) strncpy( ch->context, i->context, sizeof( ch->context )-1 ); i is struct oh323_pvt that was generated shortly beforehand by oh323_alloc() with no reference in the function to ->context. THere doesn't even appear be a search to compare the requested IP address with an H323 user so the context is left blank! Therefore, the operator cannot transfer because he is out of con...