<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
</style>
</head>
<body class='hmmessage'>
Get following error<BR>
&nbsp;<BR>
<BR>menuselect/menuselect --check-deps&nbsp;&nbsp; menuselect.makeopts<BR>Generating embedded module rules ...<BR>&nbsp;&nbsp; [CC] chan_dahdi.c -&gt; chan_dahdi.o<BR>chan_dahdi.c: In function âss7_linksetâ:<BR>chan_dahdi.c:9999: error: âss7_event_cpgâ has no member named âcauseâ<BR>make[1]: *** [chan_dahdi.o] Error 1<BR>make: *** [channels] Error 2<BR>
&nbsp;<BR>
&nbsp;<BR>
snippets of chan_dahdi.c<BR>
&nbsp;<BR>
&nbsp;case CPG_EVENT_INBANDINFO:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; struct ast_frame f = { AST_FRAME_CONTROL, AST_CONTROL_PROGRESS, };<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ast_debug(1, "Queuing frame PROGRESS on CIC %d\n", p-&gt;cic);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dahdi_queue_frame(p, &amp;f, linkset);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; p-&gt;progress = 1;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (p-&gt;dsp &amp;&amp; p-&gt;dsp_features) {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ast_dsp_set_features(p-&gt;dsp, p-&gt;dsp_features);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; p-&gt;dsp_features = 0;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ast_debug(1, "Do not handle CPG with event type 0x%x\n", e-&gt;cpg.event);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; p-&gt;owner-&gt;hangupcause = e-&gt;cpg.cause;&nbsp;&nbsp;&nbsp; &lt;-------------------line 9999<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;p-&gt;owner-&gt;_softhangup |= AST_SOFTHANGUP_DEV;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; p-&gt;do_hangup = SS7_HANGUP_DO_NOTHING;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; isup_rel(ss7, p-&gt;ss7call, AST_CAUSE_NORMAL_CLEARING);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ast_mutex_unlock(&amp;p-&gt;lock);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<BR><BR>
&nbsp;<BR>
&nbsp;<BR>
Do you think I should change line 9999 to <BR><BR>
p-&gt;owner-&gt;hangupcause = e-&gt;17; <BR>
<BR>&gt; Subject: RE: [asterisk-ss7] VÁ: RE: VÁ: Understanding libss7 code<BR>&gt; From: adomjan@tvnet.hu<BR>&gt; To: dhekial@msn.com<BR>&gt; CC: asterisk-ss7@lists.digium.com<BR>&gt; Date: Fri, 19 Dec 2008 21:31:16 +0100<BR>&gt; <BR>&gt; http://87.242.0.27/repos/trunk/libss7/<BR>&gt; http://87.242.0.27/repos/trunk/chan_dahdi/<BR>&gt; <BR>&gt; chan_dahdi is from 1.6.0<BR>&gt; <BR>&gt; On Fri, 2008-12-19 at 10:42 -0800, Rana Dhekial wrote:<BR>&gt; &gt; <BR>&gt; &gt; Under which team ?<BR>&gt; &gt; <BR>&gt; &gt; http://svn.digium.com/svn/asterisk/team/<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; Also do you know whether your SVN code works with Digium's g.729<BR>&gt; &gt; software codec? As I could make Digium's sw g729codec working with<BR>&gt; &gt; Asterisk version 1.6, only if it is 1.6.0.1<BR>&gt; &gt; <BR>&gt; &gt; &gt; From: adomjan@tvnet.hu<BR>&gt; &gt; &gt; To: asterisk-ss7@lists.digium.com<BR>&gt; &gt; &gt; Date: Fri, 19 Dec 2008 09:12:41 +0100<BR>&gt; &gt; &gt; Subject: [asterisk-ss7] VÁ: RE: VÁ: Understanding libss7 code<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; In my version, in my svn<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; -- eredeti üzenet --<BR>&gt; &gt; &gt; Tárgy: [asterisk-ss7] RE: VÁ: Understanding libss7 code<BR>&gt; &gt; &gt; Feladó: Rana Dhekial &lt;dhekial@msn.com&gt;<BR>&gt; &gt; &gt; Dátum: 2008.12.19. 02:29<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; Hi,<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; p-&gt;do_hangup = SS7_HANGUP_DO_NOTHING;<BR>&gt; &gt; &gt; do_hangup is not a member of the struct dahdi_pvt. Also where is the<BR>&gt; &gt; definition of the "SS7_HANGUP_DO_NOTHING"<BR>&gt; &gt; &gt; &gt; From: adomjan@tvnet.hu&gt; To: asterisk-ss7@lists.digium.com&gt; Date:<BR>&gt; &gt; Thu, 18 Dec 2008 23:22:26 +0100&gt; Subject: Re: [asterisk-ss7] VÁ:<BR>&gt; &gt; Understanding libss7 code&gt; &gt; On Thu, 2008-12-18 at 15:16 -0600,<BR>&gt; &gt; Matthew Fredrickson wrote:&gt; &gt; Domjan Attila wrote:&gt; &gt; &gt; should put in<BR>&gt; &gt; chan_dahdi after ISUP_EVENT_CPG and I think have to parse&gt; &gt; &gt; and<BR>&gt; &gt; pass this busy attribute to chan_dahdi via event_cpg.&gt; &gt; &gt; How looks<BR>&gt; &gt; like this kind of CPG?&gt; &gt; &gt; &gt; I would dare say that it would probably<BR>&gt; &gt; be best to not even explicitly &gt; &gt; send an REL at that point, just set<BR>&gt; &gt; the SOFTHANGUP flag on the &gt; &gt; ast_channel so that Asterisk will<BR>&gt; &gt; initiate the hangup at that point.&gt; &gt; &gt; but in this case we will send<BR>&gt; &gt; rel with cause code busy (17), but we are&gt; not busy, I vote in this<BR>&gt; &gt; situation sending rel with normal call&gt; clearing.&gt; &gt;<BR>&gt; &gt; p-&gt;owner-&gt;hangupcause = e-&gt;cpg.cause;&gt; p-&gt;owner-&gt;_softhangup |=<BR>&gt; &gt; AST_SOFTHANGUP_DEV;&gt; p-&gt;do_hangup = SS7_HANGUP_DO_NOTHING;&gt;<BR>&gt; &gt; isup_rel(ss7, p-&gt;ss7call, AST_CAUSE_NORMAL_CLEARING);&gt; &gt; &gt; &gt; &gt; That is<BR>&gt; &gt; how it is done in libpri in a similar scenario, if you look at &gt; &gt;<BR>&gt; &gt; PRI_EVENT_PROGRESS handling code in chan_dahdi.c. (IIRC)&gt; &gt; &gt; &gt;<BR>&gt; &gt; Matthew Fredrickson&gt; &gt; Digium, Inc.&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; On Thu, 2008-12-18<BR>&gt; &gt; at 11:56 -0800, Rana Dhekial wrote:&gt; &gt; &gt;&gt; I am not sure whether ITU<BR>&gt; &gt; ANSI standrad calls for it. But in real life&gt; &gt; &gt;&gt; I am having<BR>&gt; &gt; following probelm.&gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; A SIP phone registered with<BR>&gt; &gt; Asterisk calls a Mobile subscriber &gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; Asterisk<BR>&gt; &gt; ---------IAM------------&gt;PSTN ( Mobile subscriber )&gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt;<BR>&gt; &gt; Asterisk &lt;--------ACM--------------PSTN &gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; The SIP phone<BR>&gt; &gt; hears the ring back tone&gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; The Mobile subscriber rejects<BR>&gt; &gt; the call by pressing the release button.&gt; &gt; &gt;&gt; In this part of the<BR>&gt; &gt; world, call does not get forwarded to Mobile&gt; &gt; &gt;&gt; subscriber's voice<BR>&gt; &gt; mail. Probably incumbennt PLMN does not have voice&gt; &gt; &gt;&gt; mail service.<BR>&gt; &gt; Instead PSTN sends CPG with user busy.&gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; Asterisk &lt;----CPG<BR>&gt; &gt; ( with user busy)----PSTN&gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; The SIP phone keeps<BR>&gt; &gt; hearing the ring back tone for 60-90 seconds and&gt; &gt; &gt;&gt; finally the<BR>&gt; &gt; PSTN sends RELEASE after 60-90 seconds. &gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; Asterisk<BR>&gt; &gt; &lt;------REL-------------------PSTN&gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; Asterisk --------RLC<BR>&gt; &gt; -----------------&gt;PSTN&gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; My idea is to cut this<BR>&gt; &gt; 60-90 seconds to 0 by sending REL to PSTN&gt; &gt; &gt;&gt; immediately after<BR>&gt; &gt; getting the CPG with user busy from PSTN. I have&gt; &gt; &gt;&gt; tried talking<BR>&gt; &gt; to PSTN to send RELEASE to Asterisk right after they&gt; &gt; &gt;&gt; send CPG<BR>&gt; &gt; with user busy but has been invain. &gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; So any help with the<BR>&gt; &gt; code will be appreciated.&gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt; thanks,&gt; &gt; &gt;&gt; &gt; &gt; &gt;&gt;&gt; &gt; &gt;&gt;&gt; &gt;<BR>&gt; &gt; &gt;&gt;&gt; From: adomjan@tvnet.hu&gt; &gt; &gt;&gt;&gt; To: asterisk-ss7@lists.digium.com&gt; &gt;<BR>&gt; &gt; &gt;&gt;&gt; Date: Thu, 18 Dec 2008 09:02:08 +0100&gt; &gt; &gt;&gt;&gt; Subject:<BR>&gt; &gt; [asterisk-ss7] VÁ: Understanding libss7 code&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt; The code is<BR>&gt; &gt; very readable, I red the all :)&gt; &gt; &gt;&gt;&gt; where is in the itu/ansi<BR>&gt; &gt; standard that we have to do it?&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt; -- eredeti üzenet --&gt; &gt;<BR>&gt; &gt; &gt;&gt;&gt; Tárgy: [asterisk-ss7] Understanding libss7 code&gt; &gt; &gt;&gt;&gt; Feladó:<BR>&gt; &gt; Rana Dhekial &lt;dhekial@msn.com&gt;&gt; &gt; &gt;&gt;&gt; Dátum: 2008.12.18. 01:27&gt; &gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt; Hi Matthew,&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt; Can you point me to some<BR>&gt; &gt; documentations to understand the libss7&gt; &gt; &gt;&gt; source code and how it<BR>&gt; &gt; is linked with Asterisk? I have been struggling&gt; &gt; &gt;&gt; to modify your<BR>&gt; &gt; code to send ISUP_RELEASE on getting CPG with user busy&gt; &gt; &gt;&gt; from<BR>&gt; &gt; PSTN but has been successful yet.&gt; &gt; &gt;&gt;&gt; thanks,&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt; Rana&gt; &gt;<BR>&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt;<BR>&gt; &gt; _________________________________________________________________&gt; &gt;<BR>&gt; &gt; &gt;&gt;&gt; Send e-mail anywhere. No map, no compass.&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;<BR>&gt; &gt; http://windowslive.com/Explore/hotmail?ocid=TXT_TAGLM_WL_hotmail_acq_anywhere_122008&gt; &gt; &gt;&gt;&gt; _______________________________________________&gt; &gt; &gt;&gt;&gt; --Bandwidth and Colocation Provided by http://www.api-digital.com--&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt; asterisk-ss7 mailing list&gt; &gt; &gt;&gt;&gt; To UNSUBSCRIBE or update options visit:&gt; &gt; &gt;&gt;&gt; http://lists.digium.com/mailman/listinfo/asterisk-ss7&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt; _______________________________________________&gt; &gt; &gt;&gt;&gt; --Bandwidth and Colocation Provided by http://www.api-digital.com--&gt; &gt; &gt;&gt;&gt;&gt; &gt; &gt;&gt;&gt; asterisk-ss7 mailing list&gt; &gt; &gt;&gt;&gt; To UNSUBSCRIBE or update options visit:&gt; &gt; &gt;&gt;&gt; http://lists.digium.com/mailman/listinfo/asterisk-ss7&gt; &gt; &gt;&gt;&gt; &gt; &gt;&gt;&gt; &gt; &gt;&gt; ______________________________________________________________________&gt; &gt; &gt;&gt; Send e-mail faster without improving your typing skills. Get your&gt; &gt; &gt;&gt; HotmailŽ account.&gt; &gt; &gt;&gt;&gt; &gt; &gt;&gt; ------------------------------------------------------------------------&gt; &gt; &gt;&gt;&gt; &gt; &gt;&gt; _______________________________________________&gt; &gt; &gt;&gt; --Bandwidth and Colocation Provided by http://www.api-digital.com--&gt; &gt; &gt;&gt;&gt; &gt; &gt;&gt; asterisk-ss7 mailing list&gt; &gt; &gt;&gt; To UNSUBSCRIBE or update options visit:&gt; &gt; &gt;&gt; http://lists.digium.com/mailman/listinfo/asterisk-ss7&gt; &gt; &gt; &gt; &gt; &gt; _______________________________________________&gt; &gt; --Bandwidth and Colocation Provided by http://www.api-digital.com--&gt; &gt; &gt; &gt; asterisk-ss7 mailing list&gt; &gt; To UNSUBSCRIBE or update options visit:&gt; &gt; http://lists.digium.com/mailman/listinfo/asterisk-ss7<BR>&gt; &gt; &gt; _________________________________________________________________<BR>&gt; &gt; &gt; Suspicious message? There’s an alert for that. <BR>&gt; &gt; &gt;<BR>&gt; &gt; http://windowslive.com/Explore/hotmail?ocid=TXT_TAGLM_WL_hotmail_acq_broad2_122008<BR>&gt; &gt; &gt; _______________________________________________<BR>&gt; &gt; &gt; --Bandwidth and Colocation Provided by http://www.api-digital.com--<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; asterisk-ss7 mailing list<BR>&gt; &gt; &gt; To UNSUBSCRIBE or update options visit:<BR>&gt; &gt; &gt; http://lists.digium.com/mailman/listinfo/asterisk-ss7<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; _______________________________________________<BR>&gt; &gt; &gt; --Bandwidth and Colocation Provided by http://www.api-digital.com--<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; asterisk-ss7 mailing list<BR>&gt; &gt; &gt; To UNSUBSCRIBE or update options visit:<BR>&gt; &gt; &gt; http://lists.digium.com/mailman/listinfo/asterisk-ss7<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; ______________________________________________________________________<BR>&gt; &gt; Life on your PC is safer, easier, and more enjoyable with Windows<BR>&gt; &gt; VistaŽ. See how <BR><BR><br /><hr />It’s the same Hotmail®. If by “same” you mean up to 70% faster. <a href='http://windowslive.com/online/hotmail?ocid=TXT_TAGLM_WL_hotmail_acq_broad1_122008' target='_new'>Get your account now.</a></body>
</html>