Displaying 20 results from an estimated 23 matches for "15376".
Did you mean:
1536
2004 Mar 16
7
PRI Errors
...PRI: Read on 108 failed:
>Unknown error 500
>Mar 14 03:11:54 NOTICE[11276]: PRI got event: 6 on span 1
>Mar 14 03:11:54 WARNING[998419]: PRI: Short write: -1/15
>(Unknown error 500)
>Mar 14 03:11:54 WARNING[998419]: Detected alarm on channel 1: Red Alarm
>Mar 14 03:11:54 WARNING[15376]: Detected alarm on channel 2: Red Alarm
>Mar 14 03:11:54 WARNING[15376]: Detected alarm on channel 4: Red Alarm
>Mar 14 03:11:54 WARNING[15376]: Detected alarm on channel 5: Red Alarm
>Mar 14 03:11:54 WARNING[15376]: Detected alarm on channel 6: Red Alarm
>Mar 14 03:11:54 WARNING[15376...
2008 Oct 05
2
Attn Ivo. Re patches 15347 and 15376
Ivo,
Your patch number 16347 uses _fseeki64 when _WIN32 is defined.
Unfortunately, MinGW (or at least the Linux -> Win32 cross compiler
I'm using) defines _WIN32 but isn't aware of _fseeki64.
I have therefore modified your solution a little and commited it
as rev 15376. The code now looks like this:
#ifdef __MINGW32__
return fseeko64(f,off,whence);
#elif defined (_WIN32)
return _fseeki64(f,off,whence);
#else
return fseek(f,off,whence);
#endif
which should work for MinGW and the windows compilers.
However, since I don't hav...
2003 Aug 20
1
IAX <> IAX trunking... DP cache?
...privatepbx]@publicpbx
extension.conf:
[outgoing]
switch => IAX/privatepbx:[privatepbx]@publicpbx/outgoing
;exten => s,1,Dial(IAX/privatepbx:[privatepbx]@publicpbx/outgoing,20,tr)
Whenever I try to route an outbound call, however, I get the following
errors on the private PBX:
WARNING[15376]: File chan_iax.c, Line 4837 (find_cache): Unable to
generate call for 'privatepbx:[privatepbx]@publicpbx/outgoing'
WARNING[15376]: File chan_iax.c, Line 4957 (iax_exists): Unable to make
DP cache
WARNING[15376]: File chan_iax.c, Line 4837 (find_cache): Unable to
generate call for 'p...
2003 Nov 15
2
ISDN debugging and SIP dial-in issue
...low)
- dial anything from the SIP phone: doesn't work (more details below)
the very good Asterisk basic demos (echo, IAX) work very well.
Details:
- ISDN dial-out:
-- Executing Dial("Modem[i4l]/ttyI0", "Modem/g1:079xxxxxxx|60|r") in
new stack
DEBUG[15376]: File app_dial.c, Line 392 (dial_exec): SIMPLE DIAL (NO
URL)
-- Called g1:079xxxxxxx
(xxx are from me)
- SIP dial in: it seems the session is initiated (SIP message from
Asterisk on the ethernet), and then UDP (voice?) packets are sent,
but no answer comes from the S...
2003 Jul 18
8
"Best" VoIP provider for Asterisk?
Hello!
I would like to get connected with a VoIP provider for home. At some
point, I'm sure I will be connecting to it via an Asterisk box, but for
now, I will be using whatever hardware they provide.
What recomendations do you in the Asterisk community have for a reliable
VoIP service that will hopefully interoperate with Asterisk? A company
that is actually willing to work with an
2023 May 30
2
O_PATH, FreeBSD & acl_xx_fd
...that has surfaced is if Samba also requires support to change/set ACLs via O_PATH-opened file descriptors? I?m trying to test things but figured I?d put this here too if someone with more internal knowledge of the Samba VFS O_PATH-related stuff knows :-)
https://bugzilla.samba.org/show_bug.cgi?id=15376?
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=271704?
- Peter
2003 Apr 17
1
Unknown RTP codec 101 received
I updated to the latest CVS tonight and now DTMF
detection does not appear to work on my Cisco 7960 sip
phones (can't check voice mail etc). The asterisk
console is displaying these messages over and over
again any time a DTMF tone is sent:
NOTICE[15376]: File rtp.c, Line 292 (ast_rtp_read):
Unknown RTP codec 101 received
Downgraded to a known working CVS of about three weeks
ago, and everything works fine. Upgraded to the
latest CVS again, and have the same problem. Any
suggestions? Anyone else having this problem?
_________________________...
2003 Dec 08
0
problem with gsm codec
...]: File dsp.c, Line 1198 (ast_dsp_process): Unable to detect process 2 frames
WARNING[14351]: File dsp.c, Line 1198 (ast_dsp_process): Unable to detect process 2 frames
-- SIP/chabrol-a5f1 answered SIP/daniel-67b4
-- Attempting native bridge of SIP/daniel-67b4 and SIP/chabrol-a5f1
WARNING[15376]: File dsp.c, Line 1198 (ast_dsp_process): Unable to detect process 2 frames
WARNING[15376]: File dsp.c, Line 1198 (ast_dsp_process): Unable to detect process 2 frames
WARNING[14351]: File dsp.c, Line 1198 (ast_dsp_process): Unable to detect process 2 frames
WARNING[14351]: File dsp.c, Line 1198 (a...
2004 May 15
1
asterisk with E1
Hi,
I use asterisk with a Digium E1 (wct1xxp). On my old server,
everything went fine, but after having built the card to a new one, I
only have problems:
-- Executing Dial("IAX2[guest@217.X.X.X:18308]/1", "Zap/1/853")
in new stack
May 15 14:10:37 NOTICE[15376]: app_dial.c:554 dial_exec: Unable
to create channel of type 'Zap'
== Everyone is busy at this time
ztcfg shows no errors.
So where's my problem?!?
Regards,
thomas
PS:
zapata.conf:
[...]
switchtype = euroisdn
signalling = pri_cpe
group = 1
channel => 1-15,17-31
zaptel.conf:...
2023 May 30
1
O_PATH, FreeBSD & acl_xx_fd
...faced is if Samba also requires support to change/set ACLs via O_PATH-opened file descriptors? I?m trying to test things but figured I?d put this here too if someone with more internal knowledge of the Samba VFS O_PATH-related stuff knows :-)
>
>
>https://bugzilla.samba.org/show_bug.cgi?id=15376?
>
>https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=271704?
Samba uses a horrible hack, as far as I know Linux
specific, to do this.
Once it has a O_PATH fd, it then uses the path
based xattr call on the string /proc/<pid>/fd/<fdnum>
where fdnum is the O_PATH fd we already ope...
2005 Mar 08
1
Broadvoice latest changes and still not working- An Additional Server
...ce I am running today's CVS
Connected to Asterisk CVS-03/08/05-14:32:39 currently running on com
(pid = 1624)
-- Executing Dial("SIP/6050-5bc9",
"SIP/18475098263@sip.broadvoice.com|30") in new stack
-- Called 18475098263@sip.broadvoice.com
Mar 8 23:11:55 NOTICE[15376]: chan_sip.c:5047 handle_response: Failed
to authenticate on INVITE to '"6050"
<sip:8475100139@sip.broadvoice.com>;tag=as20911f6e'
I have tried many versions of sip.conf, here is the current...
[sip.broadvoice.com]
type=peer
user=phone
host=sip.broadvoice.com
fromdomain=...
2006 Jun 29
1
before_destroy & verification
Hey, probably an easy question but,
I''m trying to get a method to run "before_destory" for a model, and I
want the method to throw an error, and not delete the object from the
database, if a certain condition is held
Obviously, I can just raise an error and rescue it... but for some
reason I can''t get <% error_messages_for ''model" %> to catch
2004 May 20
1
Problems with Quadbri card
...not all calls. As * believes the
call is connected the channel remains open and the call remains in the
system until it is manually cleared.
It doesn't appear to be a service provider issue, they;ve tested the
lines and see no problem. The only strange error message in the logs is:
WARNING[15376]: PRI: !! Don't know what to do with M3=7 u-frames
which has started to appear recently bu it occurs once to twice a day
where as the failed calls can happen tens of times a day.
We have 2 isdn2e line with 1 hunt number.
We were on bristuff 0.0.2rc20a and have changed to the latest 0.0.2 bu...
2005 Mar 09
1
Broadvoice latest changes and still not working-An Additional Server
CHris,
I had the exact same problem with the exact same error.
My password was entered incorrectly in context section.
The register line had the correct password. That is why you get
incoming calls. and not outgoing.
Jerry
2003 Jul 21
4
anyone with X100P & Callerid working outside US ?
I'm just curious if anyone has the X100P & Callerid receiving working
outside US.
Replies are appreciated. Also if it's not working for you in a certain
coutry you can respond too.
regards
Martin
2023 May 30
1
O_PATH, FreeBSD & acl_xx_fd
...ba also requires support to change/set ACLs via O_PATH-opened file descriptors? I?m trying to test things but figured I?d put this here too if someone with more internal knowledge of the Samba VFS O_PATH-related stuff knows :-)
>>
>>
>> https://bugzilla.samba.org/show_bug.cgi?id=15376?
>>
>> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=271704?
>
> Samba uses a horrible hack, as far as I know Linux
> specific, to do this.
>
> Once it has a O_PATH fd, it then uses the path
> based xattr call on the string /proc/<pid>/fd/<fdnum>
>...
2003 Nov 17
1
ISDN debugging and SIP dial-in issue]
...ype 'help' for help)
*CLI> -- Timeout on SIP/17476691152-a52e
== CDR updated on SIP/17476691152-a52e
-- Executing Hangup("SIP/17476691152-a52e", "") in new stack
== Spawn extension (localphones, t, 1) exited non-zero on
'SIP/17476691152-a52e'
DEBUG[15376]: File chan_sip.c, Line 1068 (sip_hangup):
find_user(17476691152) - decrement inUse counter
Reliably Transmitting (no NAT):
SIP/2.0 403 Forbidden
> > - dial-in from ISDN, then transfer to ISDN on the secondary channel:
> > doesn't work (more details below)
>
> I assu...
2004 Jan 02
3
* Stresstool Help required
...in new stack
-- Executing VoiceMail2("SIP/gopi-bddf", "u7777") in new stack
-- Playing 'voicemail/default/7777/unavail' (language 'en')
-- Playing 'vm-intro' (language 'en')
-- Playing 'beep' (language 'en')
WARNING[15376]: File app_voicemail.c, Line 1236 (leave_voicemail): No more
messages possible
-- Executing Hangup("SIP/gopi-bddf", "") in new stack
== Spawn extension (stresstest, 7777, 5) exited non-zero on
'SIP/gopi-bddf'
The problem starts when i try to spawn more than one...
2020 Jun 26
4
Quedarse con las muestras de una BD que están presentes otra, basado en dos variables
Buenas tardes, quedarme con las muestras de una BD (data) que están
presentes en otra (datax), cuando se tiene una variable que nunca se repite
(Key) es fácil: data <- subset(data,data$Key %in% datax$Key).
Mi problema es cuando la exclusividad viene dada por dos variables. P.e.,
las coordenadas de un mapa: lon y lat.
¿Como puedo quedarme con las muestras de una df cuya lon y lat son iguales
a
2009 Aug 13
4
Crash in v1.2.3: istream.c: assertion failed on line 99
Hi,
I have a couple of people bumping into an issue with their imap
process crashing - from the users perspective, their mail client
(thunderbird) just stops recieving new mail. It still seems to be
possible for them to read their mail using squirell mail. When it
crashes, it leaves behind a log message like this on the server:
Aug 12 15:52:25 fury dovecot: imap-login: Login: