Re: Segfault in Kannel meta-data (TLV) branch with certain DLR

Kyriacos Sakkas <[email protected]>
Newsgroups gmane.comp.mobile.kannel.devel
Message-ID <[email protected]>

Founf some PANIC lines is smsbox.log




Kyriacos Sakkas wrote:
> My stability issues are in HTTP in both directions it would seem. I get
> no detailed error messages but it appears that smsbox dies after either
> forwarding more than 2-3 MOs to my app, or after it receives more than
> 2-3 MTs from my app. It then gets regenerated, but seems unable to talk
> properly to bearerbox. Unfortunately the logs show nearly nothing so I
> do not have something more detailed to share.
>
> Do you have another way of reading custom TLV values from DLR messages?
> The only thing I know that does it is the meta-data patches, and I need
> to have that functionality urgently, so for me there seems to be no
> other option, than to get it to work.
>
> Kyriacos
>
> Giulio Harding wrote:
>   
>> I've actually had to back out of using the meta-data Kannel, as we
>> spotted what looks to be a problem in the way Kannel handles carriage
>> return characters (ctrl-M) in synchronous responses to MO HTTP
>> requests - the carriage returns arrive at smsbox fine, but by the time
>> they leave the bearerbox in an SMPP PDU, they somehow end up actually
>> mangling the MT message body (text after the carriage returns is
>> missing, subsequent text segments overwrite the start of the message
>> body, etc.). Asynchronous MT HTTP requests aren't affected...
>>
>> Not 100% sure whether it's a Kannel problem or something else
>> (site-specific) - I'll do a bit more investigation tomorrow morning
>> and get back to you ASAP.
>>
>> What stability issues are you seeing? crashes/segfaults?
>>
>> On 22/01/2008, at 11:20 PM, Kyriacos Sakkas wrote:
>>
>>     
>>> Hi Guys,
>>>    I got the meta-data branch and I am still getting a lot of stability
>>> issues, although they all seem to have to do with the HTTP interface
>>> rather than the patch. I am running on debian with stock amd64 kernels
>>> but I understand that your production machine is 64bit anyway.
>>>
>>> Gioulio are you using the meta-data branch, patched csv or something
>>> else? If possible could we arrange for me to get the source files you
>>> are using? (FTP access to one of my systems can be arranged of-list).
>>>
>>> Kyriacos
>>>
>>> PS. If you need some specific debugging info, please let me know what
>>> (and if possible how) to get.
>>>
>>> Giulio Harding wrote:
>>>       
>>>> Just a followup on this, we've processed ~12000 MOs over SMPP this
>>>> morning, and there's been no further issues - thanks again Alex for
>>>> the prompt fix! :)
>>>>
>>>> On 22/01/2008, at 2:21 AM, Giulio Harding wrote:
>>>>
>>>>         
>>>>> Thanks, looks good so far! I'll report back in a few hours after
>>>>> traffic has picked up again, and let you know how the
>>>>> patched-patched-Kannel is faring :)
>>>>>
>>>>> Cheers,
>>>>>
>>>>> On 22/01/2008, at 2:03 AM, Alexander Malysh wrote:
>>>>>
>>>>>           
>>>>>> Hi,
>>>>>>
>>>>>> you are right. Thanks!
>>>>>>
>>>>>> Please try attached patch that combine fixes for both cases.
>>>>>> It's on top of clean smpp-tlv branch.
>>>>>>
>>>>>> Giulio Harding wrote:
>>>>>>
>>>>>>             
>>>>>>> Also, it looks like there's 2 instances of the same typo, one at
>>>>>>> 1396, the other at 1460
>>>>>>>
>>>>>>> the 2nd instance at line 1460, should it be something like this?
>>>>>>>
>>>>>>> ...
>>>>>>>                 if (dlrmsg != NULL) {
>>>>>>>                     if (dlrmsg->sms.meta_data == NULL)
>>>>>>>                         dlrmsg->sms.meta_data = octstr_create("");
>>>>>>>                     meta_data_set_values(dlrmsg->sms.meta_data, pdu-
>>>>>>>               
>>>>>>>> u.deliver_sm.tlv, "smpp");
>>>>>>>>                 
>>>>>>>                 }
>>>>>>> ...
>>>>>>>
>>>>>>>
>>>>>>> On 22/01/2008, at 1:32 AM, Kyriacos Sakkas wrote:
>>>>>>>
>>>>>>>               
>>>>>>>> Hi,
>>>>>>>>    There is some umbiquity in the patch. The new lines are inserted
>>>>>>>> lower from where the old lines are removed, and specificaly after
>>>>>>>> an IF
>>>>>>>> statement that would negate this code block:
>>>>>>>>                 if (dlrmsg != NULL) {
>>>>>>>> +                    if (dlrmsg->sms.meta_data == NULL)
>>>>>>>>
>>>>>>>> This looks like an error in the diff output.
>>>>>>>>
>>>>>>>> Kyriacos
>>>>>>>>
>>>>>>>> Alexander Malysh wrote:
>>>>>>>>                 
>>>>>>>>> Hi,
>>>>>>>>>
>>>>>>>>> thanks for very good bug report. Please try attached patch that
>>>>>>>>> should fix:
>>>>>>>>> 1) typo ; 2) the case if dlr is not found in the storage.
>>>>>>>>>
>>>>>>>>> Just apply it to smpp-tlv branch.
>>>>>>>>>
>>>>>>>>> Giulio Harding wrote:
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>                   
>>>>>>>>>> Ok, after a bit more perusing of the code, I think I found the
>>>>>>>>>> problem (line 1460 of gw/smsc/smsc_smpp.c):
>>>>>>>>>>
>>>>>>>>>> ...
>>>>>>>>>>             /* got a deliver ack (DLR)?
>>>>>>>>>>                  * NOTE: following SMPP v3.4. spec. we are
>>>>>>>>>> interested
>>>>>>>>>>                  *       only on bits 2-5 (some SMSC's send 0x44,
>>>>>>>>>> and it's
>>>>>>>>>>                  *       spec. conforme)
>>>>>>>>>>                  */
>>>>>>>>>>             if (pdu->u.deliver_sm.esm_class & (0x04|0x08)) {
>>>>>>>>>>
>>>>>>>>>>                 debug("bb.sms.smpp",0,"SMPP[%s] handle_pdu, got
>>>>>>>>>> DLR",
>>>>>>>>>>                       octstr_get_cstr(smpp->conn->id));
>>>>>>>>>>
>>>>>>>>>>                 dlrmsg = handle_dlr(smpp, pdu-
>>>>>>>>>>                     
>>>>>>>>>>> u.deliver_sm.source_addr, pdu->u.deliver_sm.short_message, pdu-
>>>>>>>>>>> u.deliver_sm.message_payload,
>>>>>>>>>>>                       
>>>>>>>>>>                                     pdu-
>>>>>>>>>>                     
>>>>>>>>>>> u.deliver_sm.receipted_message_id, pdu-
>>>>>>>>>>>                       
>>>>>>>>>>>> u.deliver_sm.message_state);
>>>>>>>>>>>>                         
>>>>>>>>>>                 if (dlrmsg->sms.meta_data == NULL)
>>>>>>>>>>                     dlrmsg->sms.meta_data = octstr_create("");
>>>>>>>>>>                 meta_data_set_values(msg->sms.meta_data, pdu-
>>>>>>>>>>                     
>>>>>>>>>>> u.deliver_sm.tlv, "smpp"); /* <----------------------- should be
>>>>>>>>>>>                       
>>>>>>>>>> 'dlrmsg->sms.meta_data' */
>>>>>>>>>>                 resp = smpp_pdu_create(deliver_sm_resp,
>>>>>>>>>>                             pdu->u.deliver_sm.sequence_number);
>>>>>>>>>>                 if (dlrmsg != NULL)
>>>>>>>>>>                     reason = bb_smscconn_receive(smpp->conn,
>>>>>>>>>> dlrmsg);
>>>>>>>>>>                 else
>>>>>>>>>>                     reason = SMSCCONN_SUCCESS;
>>>>>>>>>>                 resp->u.deliver_sm_resp.command_status =
>>>>>>>>>> smscconn_failure_reason_to_smpp_status(reason);
>>>>>>>>>>             } else {/* MO-SMS */
>>>>>>>>>> ...
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> I've changed that line (replaced 'msg' with 'dlrmsg') and rebuilt
>>>>>>>>>> Kannel - it seems to be working fine so far, but I'll need some
>>>>>>>>>> more
>>>>>>>>>> traffic to know for sure (it's late here, so traffic has dropped
>>>>>>>>>> off
>>>>>>>>>> a bit)
>>>>>>>>>>
>>>>>>>>>> Can someone confirm this problem + fix?
>>>>>>>>>>
>>>>>>>>>> Thanks,
>>>>>>>>>>
>>>>>>>>>> On 21/01/2008, at 11:57 PM, Giulio Harding wrote:
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>                     
>>>>>>>>>>> I've been testing Alex's TLV patch with the meta-data branch,
>>>>>>>>>>> with
>>>>>>>>>>> initial success (able to read and set mblox TLVs for US-specific
>>>>>>>>>>> bind, as per Kyriacos's mblox TLV config - thanks for that!).
>>>>>>>>>>> It's
>>>>>>>>>>> been performing perfectly on our test server, with a small
>>>>>>>>>>> number
>>>>>>>>>>> of test binds, carrying test traffic.
>>>>>>>>>>>
>>>>>>>>>>> However, when I decided to try deploying that build to
>>>>>>>>>>> production,
>>>>>>>>>>> bearerbox would crash shortly after startup (after varying
>>>>>>>>>>> delay,
>>>>>>>>>>> sometimes 1 second, sometimes 10 or so). It would segfault,
>>>>>>>>>>> with no
>>>>>>>>>>> indication in bearer.log (just a 'Connection closed by the
>>>>>>>>>>> bearerbox' in smsbox.log) - the only indication was in /var/log/
>>>>>>>>>>> messages, for example:
>>>>>>>>>>>
>>>>>>>>>>> Jan 21 23:46:27 smsgw2 kernel: bearerbox[10180]: segfault at
>>>>>>>>>>> 0000000000000118 rip 000000000044c229 rsp 000000005ea30060
>>>>>>>>>>> error 4
>>>>>>>>>>>
>>>>>>>>>>> I initially thought it might be a 32-bit/64-bit thing (test
>>>>>>>>>>> server
>>>>>>>>>>> is 32-bit, production is 64-bit), but I couldn't reproduce the
>>>>>>>>>>> problem on another 64-bit machine, and recompiling with gcc4
>>>>>>>>>>> didn't
>>>>>>>>>>> help. (gcc 3.4 apparently can produce incorrect instructions on
>>>>>>>>>>> 64-
>>>>>>>>>>> bit machines in some rare cases??) Turning on debug logging
>>>>>>>>>>> didn't
>>>>>>>>>>> show anything useful either.
>>>>>>>>>>>
>>>>>>>>>>> I recompiled kannel with --with-defaults=debug, and tried
>>>>>>>>>>> attaching
>>>>>>>>>>> gdb to bearerbox to see if I could get anything useful when it
>>>>>>>>>>> segfaulted - here's the output from gdb:
>>>>>>>>>>>
>>>>>>>>>>> ...
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: SMPP[optusfrmt]: Got
>>>>>>>>>>> PDU:
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: SMPP PDU 0x6bcff60 dump:
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   type_name: deliver_sm
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   command_id: 5 =
>>>>>>>>>>> 0x00000005
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   command_status: 0 =
>>>>>>>>>>> 0x00000000
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   sequence_number: 1 =
>>>>>>>>>>> 0x00000001
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   service_type: "NOREP"
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   source_addr_ton: 1 =
>>>>>>>>>>> 0x00000001
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   source_addr_npi: 1 =
>>>>>>>>>>> 0x00000001
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   source_addr: "XXXX"
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   dest_addr_ton: 2 =
>>>>>>>>>>> 0x00000002
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   dest_addr_npi: 8 =
>>>>>>>>>>> 0x00000008
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   destination_addr:
>>>>>>>>>>> "19774777"
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   esm_class: 4 =
>>>>>>>>>>> 0x00000004
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   protocol_id: 0 =
>>>>>>>>>>> 0x00000000
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   priority_flag: 0 =
>>>>>>>>>>> 0x00000000
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:
>>>>>>>>>>> schedule_delivery_time: NULL
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   validity_period: NULL
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:  
>>>>>>>>>>> registered_delivery: 0 =
>>>>>>>>>>> 0x00000000
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:  
>>>>>>>>>>> replace_if_present_flag:
>>>>>>>>>>> 0 = 0x00000000
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   data_coding: 0 =
>>>>>>>>>>> 0x00000000
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   sm_default_msg_id: 0 =
>>>>>>>>>>> 0x00000000
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   sm_length: 122 =
>>>>>>>>>>> 0x0000007a
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:   short_message:
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:    Octet string at
>>>>>>>>>>> 0x6be5f30:
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      len:  122
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      size: 123
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      immutable: 0
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      data: 69 64 3a
>>>>>>>>>>> 31 34
>>>>>>>>>>> 32 37 31 35 39 33 37 36 20 73 75   id:1427159376 su
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      data: 62 3a 30
>>>>>>>>>>> 30 31
>>>>>>>>>>> 20 64 6c 76 72 64 3a 30 30 31 20   b:001 dlvrd:001
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      data: 73 75 62
>>>>>>>>>>> 6d 69
>>>>>>>>>>> 74 20 64 61 74 65 3a 30 38 30 31   submit date:0801
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      data: 32 31 32
>>>>>>>>>>> 33 35
>>>>>>>>>>> 39 20 64 6f 6e 65 20 64 61 74 65   212359 done date
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      data: 3a 30 38
>>>>>>>>>>> 30 31
>>>>>>>>>>> 32 31 32 33 35 39 20 73 74 61 74   :0801212359 stat
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      data: 3a 44 45
>>>>>>>>>>> 4c 49
>>>>>>>>>>> 56 52 44 20 65 72 72 3a 30 30 30   :DELIVRD err:000
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      data: 20 74 65
>>>>>>>>>>> 78 74
>>>>>>>>>>> 3a 43 68 20 37 3a 20 54 68 6e 78    text:Ch 7: Thnx
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:      data: 20 34 20
>>>>>>>>>>> 65 6e
>>>>>>>>>>> 74 65 72 69 6e                      4 enterin
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG:    Octet string dump
>>>>>>>>>>> ends.
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: SMPP PDU dump ends.
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: SMPP[optusfrmt]
>>>>>>>>>>> handle_pdu,
>>>>>>>>>>> got DLR
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: DLR[pgsql]: Looking for
>>>>>>>>>>> DLR
>>>>>>>>>>> smsc=optusfrmt, ts=1427159376, dst=XXXX, type=1
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: sql: SELECT mask,
>>>>>>>>>>> service,
>>>>>>>>>>> url, source, destination, boxc FROM dlr WHERE
>>>>>>>>>>> smsc='optusfrmt' AND
>>>>>>>>>>> ts='1427159376' LIMIT 1;
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: Found entry, col1=31,
>>>>>>>>>>> col2=apg,
>>>>>>>>>>> col3=http://apg:8888/dlr/kannel?i=44921898&t=%T&c=%d&m=%
>>>>>>>>>>> A, col4=19774777, col5=XXXX col6=
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: DLR[pgsql]: created DLR
>>>>>>>>>>> message for URL <http://apg:8888/dlr/kannel?i=44921898&t=%T&c=%
>>>>>>>>>>> d&m=%A>
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: removing DLR from
>>>>>>>>>>> database
>>>>>>>>>>> 2008-01-21 23:59:28 [18588] [49] DEBUG: sql: DELETE FROM dlr
>>>>>>>>>>> WHERE
>>>>>>>>>>> smsc='optusfrmt' AND ts='1427159376';
>>>>>>>>>>>
>>>>>>>>>>> Program received signal SIGSEGV, Segmentation fault.
>>>>>>>>>>> [Switching to Thread 1577253216 (LWP 18639)]
>>>>>>>>>>> 0x000000000044ebc1 in handle_pdu (smpp=0x2a95c0e3d0,
>>>>>>>>>>> conn=0x6b4f8c0,
>>>>>>>>>>>    pdu=0x6bcff60, pending_submits=0x5e02f0f0) at gw/smsc/
>>>>>>>>>>> smsc_smpp.c:1460
>>>>>>>>>>> 1460                    meta_data_set_values(msg->sms.meta_data,
>>>>>>>>>>> pdu->u.deliver_sm.tlv, "smpp");
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> So, it seems the segfault is triggered by TLV handling for a
>>>>>>>>>>> certain kind of DLR? (We had DLRs coming in on our test
>>>>>>>>>>> binds, and
>>>>>>>>>>> that didn't cause a problem). I'm a complete GDB noob, so if
>>>>>>>>>>> there's anything else I can do to provide more information,
>>>>>>>>>>> please
>>>>>>>>>>> let me know.
>>>>>>>>>>>
>>>>>>>>>>> Any ideas why that meta_data_set_value function call would die
>>>>>>>>>>> with
>>>>>>>>>>> that DLR? Any assistance would be greatly appreciated!
>>>>>>>>>>>
>>>>>>>>>>> FYI, Kannel details are:
>>>>>>>>>>>
>>>>>>>>>>> Kannel bearerbox version `cvs-20071018'. Build `Jan 21 2008
>>>>>>>>>>> 23:52:11', compiler `3.4.6 20060404 (Red Hat 3.4.6-9)'. System
>>>>>>>>>>> Linux, release 2.6.9-55.0.2.ELsmp, version #1 SMP Tue Jun 26
>>>>>>>>>>> 14:14:47 EDT 2007, machine x86_64. Hostname
>>>>>>>>>>> smsgw2.appgw.mnetcorporation.com, IP 10.110.123.31. Libxml
>>>>>>>>>>> version
>>>>>>>>>>> 2.6.16. Using checking malloc.
>>>>>>>>>>>
>>>>>>>>>>> Thanks,
>>>>>>>>>>>
>>>>>>>>>>> -- 
>>>>>>>>>>> Giulio Harding
>>>>>>>>>>> Systems Administrator
>>>>>>>>>>>
>>>>>>>>>>> m.Net Corporation
>>>>>>>>>>> Level 2, 8 Leigh Street
>>>>>>>>>>> Adelaide SA 5000, Australia
>>>>>>>>>>>
>>>>>>>>>>> Tel: +61 8 8210 2041
>>>>>>>>>>> Fax: +61 8 8211 9620
>>>>>>>>>>> Mobile: 0432 876 733
>>>>>>>>>>> Yahoo: giulio.harding
>>>>>>>>>>> MSN: [email protected]
>>>>>>>>>>>
>>>>>>>>>>> http://www.mnetcorporation.com
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>                       
>>>>>>>>>> -- 
>>>>>>>>>> Giulio Harding
>>>>>>>>>> Systems Administrator
>>>>>>>>>>
>>>>>>>>>> m.Net Corporation
>>>>>>>>>> Level 2, 8 Leigh Street
>>>>>>>>>> Adelaide SA 5000, Australia
>>>>>>>>>>
>>>>>>>>>> Tel: +61 8 8210 2041
>>>>>>>>>> Fax: +61 8 8211 9620
>>>>>>>>>> Mobile: 0432 876 733
>>>>>>>>>> Yahoo: giulio.harding
>>>>>>>>>> MSN: [email protected]
>>>>>>>>>>
>>>>>>>>>> http://www.mnetcorporation.com
>>>>>>>>>>
>>>>>>>>>>                     
>>>>>>>>>                   
>>>>>>>> -- 
>>>>>>>> Kyriacos Sakkas
>>>>>>>> Development Team
>>>>>>>> Netsmart
>>>>>>>> Tel: + 357 22 452565
>>>>>>>> Fax: + 357 22 452566
>>>>>>>> Email: [email protected]
>>>>>>>> http://www.netsmart.com.cy
>>>>>>>>
>>>>>>>> Taking Business to a New Level!
>>>>>>>>
>>>>>>>> ** Confidentiality Notice: The information contained in this email
>>>>>>>> message may be privileged, confidential and protected from
>>>>>>>> disclosure.
>>>>>>>> If you are not the intended recipient, any dissemination,
>>>>>>>> distribution,
>>>>>>>> or copying of this  email message is strictly prohibited.
>>>>>>>> If you think that you have received this email message in error,
>>>>>>>> please
>>>>>>>> email the sender at [email protected] **
>>>>>>>>
>>>>>>>>
>>>>>>>>                 
>>>>>>> -- 
>>>>>>> Giulio Harding
>>>>>>> Systems Administrator
>>>>>>>
>>>>>>> m.Net Corporation
>>>>>>> Level 2, 8 Leigh Street
>>>>>>> Adelaide SA 5000, Australia
>>>>>>>
>>>>>>> Tel: +61 8 8210 2041
>>>>>>> Fax: +61 8 8211 9620
>>>>>>> Mobile: 0432 876 733
>>>>>>> Yahoo: giulio.harding
>>>>>>> MSN: [email protected]
>>>>>>>
>>>>>>> http://www.mnetcorporation.com
>>>>>>>               
>>>>>> -- 
>>>>>> Thanks,
>>>>>> Alex<smpp-tlv-drl-fix.diff>
>>>>>>             
>>>>> -- 
>>>>> Giulio Harding
>>>>> Systems Administrator
>>>>>
>>>>> m.Net Corporation
>>>>> Level 2, 8 Leigh Street
>>>>> Adelaide SA 5000, Australia
>>>>>
>>>>> Tel: +61 8 8210 2041
>>>>> Fax: +61 8 8211 9620
>>>>> Mobile: 0432 876 733
>>>>> Yahoo: giulio.harding
>>>>> MSN: [email protected]
>>>>>
>>>>> http://www.mnetcorporation.com
>>>>>
>>>>>
>>>>>
>>>>>           
>>>> -- 
>>>> Giulio Harding
>>>> Systems Administrator
>>>>
>>>> m.Net Corporation
>>>> Level 2, 8 Leigh Street
>>>> Adelaide SA 5000, Australia
>>>>
>>>> Tel: +61 8 8210 2041
>>>> Fax: +61 8 8211 9620
>>>> Mobile: 0432 876 733
>>>> Yahoo: giulio.harding
>>>> MSN: [email protected]
>>>>
>>>> http://www.mnetcorporation.com
>>>>
>>>>
>>>>         
>>> -- 
>>> Kyriacos Sakkas
>>> Development Team
>>> Netsmart
>>> Tel: + 357 22 452565
>>> Fax: + 357 22 452566
>>> Email: [email protected]
>>> http://www.netsmart.com.cy
>>>
>>> Taking Business to a New Level!
>>>
>>> ** Confidentiality Notice: The information contained in this email
>>> message may be privileged, confidential and protected from disclosure.
>>> If you are not the intended recipient, any dissemination, distribution,
>>> or copying of this  email message is strictly prohibited.
>>> If you think that you have received this email message in error, please
>>> email the sender at [email protected] **
>>>
>>>       
>> -- 
>> Giulio Harding
>> Systems Administrator
>>
>> m.Net Corporation
>> Level 2, 8 Leigh Street
>> Adelaide SA 5000, Australia
>>
>> Tel: +61 8 8210 2041
>> Fax: +61 8 8211 9620
>> Mobile: 0432 876 733
>> MSN: [email protected]
>>
>> http://www.mnetcorporation.com
>>
>>     
>
>
>   


-- 
Kyriacos Sakkas
Development Team
Netsmart
Tel: + 357 22 452565
Fax: + 357 22 452566
Email: [email protected]
http://www.netsmart.com.cy

Taking Business to a New Level!

** Confidentiality Notice: The information contained in this email
message may be privileged, confidential and protected from disclosure.
If you are not the intended recipient, any dissemination, distribution,
or copying of this  email message is strictly prohibited.
If you think that you have received this email message in error, please
email the sender at [email protected] **
PANIC.txt (text/plain, 67.8 KB)
6398970-2008-01-22 12:48:44 [11028] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<Your account has not been charged and you have not been subscribed to our services. For help send HELP or call 1-888-218-4144.>
6399199-2008-01-22 12:48:44 [11028] [3] DEBUG: Stored UUID 192aeb7b-8629-418d-92a2-187c9031cc57
6399287-2008-01-22 12:48:44 [11028] [3] DEBUG: message length 126, sending 1 messages
6399365-2008-01-22 12:48:44 [11028] [3] ERROR: Start marker was damaged for area 0xe5c1c38
6399448-2008-01-22 12:48:44 [11028] [3] ERROR: Could not find area information.
6399520:2008-01-22 12:48:44 [11028] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6399695:2008-01-22 12:48:44 [11028] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6399784:2008-01-22 12:48:44 [11028] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6399858:2008-01-22 12:48:44 [11028] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6399953:2008-01-22 12:48:44 [11028] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6400027:2008-01-22 12:48:44 [11028] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6400101:2008-01-22 12:48:44 [11028] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f10240]
6400188:2008-01-22 12:48:44 [11028] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d8b3de]
6400283-2008-01-22 12:49:02 [11047] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6400380-2008-01-22 12:49:02 [11047] [0] INFO: HTTP: Opening server at port 8181.
6400453-2008-01-22 12:49:02 [11047] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6400532-2008-01-22 12:49:02 [11047] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6400617-2008-01-22 12:49:02 [11047] [0] INFO: Set up send sms service at port 8181
--
6406849-2008-01-22 12:49:12 [11047] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<The command you have sent cannot be recognized please check the product code and try again.  For product listings check www.smartlogos.tv. For help send HELP.>
6407110-2008-01-22 12:49:12 [11047] [3] DEBUG: Stored UUID d7b4f536-abd3-46fc-98a6-136d824e689d
6407198-2008-01-22 12:49:12 [11047] [3] DEBUG: message length 158, sending 1 messages
6407276-2008-01-22 12:49:12 [11047] [3] ERROR: Start marker was damaged for area 0xe5d27b0
6407359-2008-01-22 12:49:12 [11047] [3] ERROR: Could not find area information.
6407431:2008-01-22 12:49:12 [11047] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6407606:2008-01-22 12:49:12 [11047] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6407695:2008-01-22 12:49:12 [11047] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6407769:2008-01-22 12:49:12 [11047] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6407864:2008-01-22 12:49:12 [11047] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6407938:2008-01-22 12:49:12 [11047] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6408012:2008-01-22 12:49:12 [11047] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7e7f240]
6408099:2008-01-22 12:49:12 [11047] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7cfa3de]
6408194-2008-01-22 12:49:45 [11099] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6408291-2008-01-22 12:49:45 [11099] [0] INFO: HTTP: Opening server at port 8181.
6408364-2008-01-22 12:49:45 [11099] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6408443-2008-01-22 12:49:45 [11099] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6408528-2008-01-22 12:49:45 [11099] [0] INFO: Set up send sms service at port 8181
--
6414764-2008-01-22 12:50:03 [11099] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<The command you have sent cannot be recognized please check the product code and try again.  For product listings check www.smartlogos.tv. For help send HELP.>
6415025-2008-01-22 12:50:03 [11099] [3] DEBUG: Stored UUID 6730e866-9c03-4239-8627-d62346aa2f0e
6415113-2008-01-22 12:50:03 [11099] [3] DEBUG: message length 158, sending 1 messages
6415191-2008-01-22 12:50:03 [11099] [3] ERROR: Start marker was damaged for area 0xe5d26a0
6415274-2008-01-22 12:50:03 [11099] [3] ERROR: Could not find area information.
6415346:2008-01-22 12:50:03 [11099] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6415521:2008-01-22 12:50:03 [11099] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6415610:2008-01-22 12:50:03 [11099] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6415684:2008-01-22 12:50:03 [11099] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6415779:2008-01-22 12:50:03 [11099] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6415853:2008-01-22 12:50:03 [11099] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6415927:2008-01-22 12:50:03 [11099] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7ebb240]
6416014:2008-01-22 12:50:03 [11099] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d363de]
6416109-2008-01-22 12:50:12 [11111] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6416206-2008-01-22 12:50:12 [11111] [0] INFO: HTTP: Opening server at port 8181.
6416279-2008-01-22 12:50:12 [11111] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6416358-2008-01-22 12:50:12 [11111] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6416443-2008-01-22 12:50:12 [11111] [0] INFO: Set up send sms service at port 8181
--
6422675-2008-01-22 12:50:12 [11111] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<16507738541> msg:<The command you have sent cannot be recognized please check the product code and try again.  For product listings check www.smartlogos.tv. For help send HELP.>
6422936-2008-01-22 12:50:12 [11111] [3] DEBUG: Stored UUID 45a313cb-f6fe-482c-a1f2-6b06b744822a
6423024-2008-01-22 12:50:12 [11111] [3] DEBUG: message length 158, sending 1 messages
6423102-2008-01-22 12:50:12 [11111] [3] ERROR: Start marker was damaged for area 0xe5d26d8
6423185-2008-01-22 12:50:12 [11111] [3] ERROR: Could not find area information.
6423257:2008-01-22 12:50:12 [11111] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6423432:2008-01-22 12:50:12 [11111] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6423521:2008-01-22 12:50:12 [11111] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6423595:2008-01-22 12:50:12 [11111] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6423690:2008-01-22 12:50:12 [11111] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6423764:2008-01-22 12:50:12 [11111] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6423838:2008-01-22 12:50:12 [11111] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f72240]
6423925:2008-01-22 12:50:12 [11111] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7ded3de]
6424020-2008-01-22 12:51:03 [11138] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6424117-2008-01-22 12:51:03 [11138] [0] INFO: HTTP: Opening server at port 8181.
6424190-2008-01-22 12:51:03 [11138] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6424269-2008-01-22 12:51:03 [11138] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6424354-2008-01-22 12:51:03 [11138] [1] DEBUG: Thread 1 (gwlib/fdset.c:poller) maps to pid 11138.
--
6430586-2008-01-22 12:52:07 [11138] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<16507738541> msg:<The command you have sent cannot be recognized please check the product code and try again.  For product listings check www.smartlogos.tv. For help send HELP.>
6430847-2008-01-22 12:52:07 [11138] [3] DEBUG: Stored UUID 7fe5f533-efbe-478e-bffc-f076a5d53485
6430935-2008-01-22 12:52:07 [11138] [3] DEBUG: message length 158, sending 1 messages
6431013-2008-01-22 12:52:07 [11138] [3] ERROR: Start marker was damaged for area 0xe5d2888
6431096-2008-01-22 12:52:07 [11138] [3] ERROR: Could not find area information.
6431168:2008-01-22 12:52:07 [11138] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6431343:2008-01-22 12:52:07 [11138] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6431432:2008-01-22 12:52:07 [11138] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6431506:2008-01-22 12:52:07 [11138] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6431601:2008-01-22 12:52:07 [11138] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6431675:2008-01-22 12:52:07 [11138] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6431749:2008-01-22 12:52:07 [11138] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7ef7240]
6431836:2008-01-22 12:52:07 [11138] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d723de]
6431931-2008-01-22 12:52:07 [11150] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6432028-2008-01-22 12:52:07 [11150] [0] INFO: HTTP: Opening server at port 8181.
6432101-2008-01-22 12:52:07 [11150] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6432180-2008-01-22 12:52:07 [11150] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6432265-2008-01-22 12:52:07 [11150] [1] DEBUG: Thread 1 (gwlib/fdset.c:poller) maps to pid 11150.
--
6438497-2008-01-22 12:53:39 [11150] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<The command you have sent cannot be recognized please check the product code and try again.  For product listings check www.smartlogos.tv. For help send HELP.>
6438758-2008-01-22 12:53:39 [11150] [3] DEBUG: Stored UUID 6b183067-4857-42d7-8c16-1ea22e4a2082
6438846-2008-01-22 12:53:39 [11150] [3] DEBUG: message length 158, sending 1 messages
6438924-2008-01-22 12:53:39 [11150] [3] ERROR: Start marker was damaged for area 0xe5a0718
6439007-2008-01-22 12:53:39 [11150] [3] ERROR: Could not find area information.
6439079:2008-01-22 12:53:39 [11150] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6439254:2008-01-22 12:53:39 [11150] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6439343:2008-01-22 12:53:39 [11150] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6439417:2008-01-22 12:53:39 [11150] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6439512:2008-01-22 12:53:39 [11150] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6439586:2008-01-22 12:53:39 [11150] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6439660:2008-01-22 12:53:39 [11150] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f19240]
6439747:2008-01-22 12:53:39 [11150] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d943de]
6439842-2008-01-22 12:53:39 [11167] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6439939-2008-01-22 12:53:39 [11167] [0] INFO: HTTP: Opening server at port 8181.
6440012-2008-01-22 12:53:39 [11167] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6440091-2008-01-22 12:53:39 [11167] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6440176-2008-01-22 12:53:39 [11167] [0] INFO: Set up send sms service at port 8181
--
6446420-2008-01-22 12:54:30 [11167] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<You are not subscribed to our services. For more info send HELP ,call 1-888-218-4144 or visit www.smartlogos.tv>
6446634-2008-01-22 12:54:30 [11167] [3] DEBUG: Stored UUID 9e0953d7-9836-4496-9e3f-8144b757b3d7
6446722-2008-01-22 12:54:30 [11167] [3] DEBUG: message length 111, sending 1 messages
6446800-2008-01-22 12:54:30 [11167] [3] ERROR: Start marker was damaged for area 0xe5d23f0
6446883-2008-01-22 12:54:30 [11167] [3] ERROR: Could not find area information.
6446955:2008-01-22 12:54:30 [11167] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6447130:2008-01-22 12:54:30 [11167] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6447219:2008-01-22 12:54:30 [11167] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6447293:2008-01-22 12:54:30 [11167] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6447388:2008-01-22 12:54:30 [11167] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6447462:2008-01-22 12:54:30 [11167] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6447536:2008-01-22 12:54:30 [11167] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7eb3240]
6447623:2008-01-22 12:54:30 [11167] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d2e3de]
6447718-2008-01-22 12:54:40 [11220] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6447815-2008-01-22 12:54:40 [11220] [0] INFO: HTTP: Opening server at port 8181.
6447888-2008-01-22 12:54:40 [11220] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6447967-2008-01-22 12:54:40 [11220] [1] DEBUG: Thread 1 (gwlib/fdset.c:poller) maps to pid 11220.
6448057-2008-01-22 12:54:40 [11220] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
--
6454403-2008-01-22 12:56:25 [11220] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<SMART Plan Subscription: $9.99 per month for 100 credits.  Send Y to accept, STOP to end, for help txt HELP or 1-888-218-4144 T&C + More at www.SmartLogos.tv>
6454663-2008-01-22 12:56:25 [11220] [3] DEBUG: Stored UUID ebb82188-da6c-449a-9b42-11dc143d748a
6454751-2008-01-22 12:56:25 [11220] [3] DEBUG: message length 157, sending 1 messages
6454829-2008-01-22 12:56:25 [11220] [3] ERROR: Start marker was damaged for area 0xe5d2b08
6454912-2008-01-22 12:56:25 [11220] [3] ERROR: Could not find area information.
6454984:2008-01-22 12:56:25 [11220] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6455159:2008-01-22 12:56:25 [11220] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6455248:2008-01-22 12:56:25 [11220] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6455322:2008-01-22 12:56:25 [11220] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6455417:2008-01-22 12:56:25 [11220] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6455491:2008-01-22 12:56:25 [11220] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6455565:2008-01-22 12:56:25 [11220] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7ed8240]
6455652:2008-01-22 12:56:25 [11220] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d533de]
6455747-2008-01-22 12:56:25 [11247] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6455844-2008-01-22 12:56:25 [11247] [0] INFO: HTTP: Opening server at port 8181.
6455917-2008-01-22 12:56:25 [11247] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6455996-2008-01-22 12:56:25 [11247] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6456081-2008-01-22 12:56:25 [11247] [0] INFO: Set up send sms service at port 8181
--
6462313-2008-01-22 12:57:36 [11247] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<START>
6462421-2008-01-22 12:57:36 [11247] [3] DEBUG: Stored UUID 7b228670-63d6-49bb-b3d4-749609cfa2ef
6462509-2008-01-22 12:57:36 [11247] [3] DEBUG: message length 5, sending 1 messages
6462585-2008-01-22 12:57:36 [11247] [3] ERROR: Start marker was damaged for area 0xe5d3318
6462668-2008-01-22 12:57:36 [11247] [3] ERROR: Could not find area information.
6462740:2008-01-22 12:57:36 [11247] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6462915:2008-01-22 12:57:36 [11247] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6463004:2008-01-22 12:57:36 [11247] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6463078:2008-01-22 12:57:36 [11247] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6463173:2008-01-22 12:57:36 [11247] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6463247:2008-01-22 12:57:36 [11247] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6463321:2008-01-22 12:57:36 [11247] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f3d240]
6463408:2008-01-22 12:57:36 [11247] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7db83de]
6463503-2008-01-22 12:57:37 [11259] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6463600-2008-01-22 12:57:37 [11259] [0] INFO: HTTP: Opening server at port 8181.
6463673-2008-01-22 12:57:37 [11259] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6463752-2008-01-22 12:57:37 [11259] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6463837-2008-01-22 12:57:37 [11259] [1] DEBUG: Thread 1 (gwlib/fdset.c:poller) maps to pid 11259.
--
6470366-2008-01-22 12:58:17 [11259] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<18652425640> msg:<SMART Plan Subscription: $9.99 per month for 100 credits.  Send Y to accept, STOP to end, for help txt HELP or 1-888-218-4144 T&C + More at www.SmartLogos.tv>
6470626-2008-01-22 12:58:17 [11259] [3] DEBUG: Stored UUID 30be4614-53ff-4e4a-a027-58ddf5a5c445
6470714-2008-01-22 12:58:17 [11259] [3] DEBUG: message length 157, sending 1 messages
6470792-2008-01-22 12:58:17 [11259] [3] ERROR: Start marker was damaged for area 0xe5a0750
6470875-2008-01-22 12:58:17 [11259] [3] ERROR: Could not find area information.
6470947:2008-01-22 12:58:17 [11259] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6471122:2008-01-22 12:58:17 [11259] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6471211:2008-01-22 12:58:17 [11259] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6471285:2008-01-22 12:58:17 [11259] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6471380:2008-01-22 12:58:17 [11259] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6471454:2008-01-22 12:58:17 [11259] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6471528:2008-01-22 12:58:17 [11259] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7e9c240]
6471615:2008-01-22 12:58:17 [11259] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d173de]
6471710-2008-01-22 12:58:36 [11271] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6471807-2008-01-22 12:58:36 [11271] [0] INFO: HTTP: Opening server at port 8181.
6471880-2008-01-22 12:58:36 [11271] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6471959-2008-01-22 12:58:36 [11271] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6472044-2008-01-22 12:58:36 [11271] [0] INFO: Set up send sms service at port 8181
--
6488439-2008-01-22 12:59:07 [11271] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<18652425640> msg:<http://mb42.sprintpcs.com/deliver/gcd/2e08d3de197754cb2a5ab89e275f8b79_45324-138839.gcd>
6488629-2008-01-22 12:59:07 [11271] [3] DEBUG: Stored UUID 1ec6e067-6be4-4fc9-bfc0-b1d7c5c270e1
6488717-2008-01-22 12:59:07 [11271] [3] DEBUG: message length 87, sending 1 messages
6488794-2008-01-22 12:59:07 [11271] [3] ERROR: Start marker was damaged for area 0xe577058
6488877-2008-01-22 12:59:07 [11271] [3] ERROR: Could not find area information.
6488949:2008-01-22 12:59:07 [11271] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6489124:2008-01-22 12:59:07 [11271] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6489213:2008-01-22 12:59:07 [11271] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6489287:2008-01-22 12:59:07 [11271] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6489382:2008-01-22 12:59:07 [11271] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6489456:2008-01-22 12:59:07 [11271] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6489530:2008-01-22 12:59:07 [11271] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7ed9240]
6489617:2008-01-22 12:59:07 [11271] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d543de]
6489712-2008-01-22 12:59:17 [11288] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6489809-2008-01-22 12:59:17 [11288] [0] INFO: HTTP: Opening server at port 8181.
6489882-2008-01-22 12:59:17 [11288] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6489961-2008-01-22 12:59:17 [11288] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6490046-2008-01-22 12:59:17 [11288] [0] INFO: Set up send sms service at port 8181
--
6515271-2008-01-22 13:00:40 [11288] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<16507738541> msg:<The command you have sent cannot be recognized please check the product code and try again.  For product listings check www.smartlogos.tv. For help send HELP.>
6515532-2008-01-22 13:00:40 [11288] [3] DEBUG: Stored UUID df9a9ddd-8a5f-4cf9-b0c9-029f09a4d351
6515620-2008-01-22 13:00:40 [11288] [3] DEBUG: message length 158, sending 1 messages
6515698-2008-01-22 13:00:40 [11288] [3] ERROR: Start marker was damaged for area 0xe5ccaf0
6515781-2008-01-22 13:00:40 [11288] [3] ERROR: Could not find area information.
6515853:2008-01-22 13:00:40 [11288] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6516028:2008-01-22 13:00:40 [11288] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6516117:2008-01-22 13:00:40 [11288] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6516191:2008-01-22 13:00:40 [11288] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6516286:2008-01-22 13:00:40 [11288] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6516360:2008-01-22 13:00:40 [11288] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6516434:2008-01-22 13:00:40 [11288] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7e92240]
6516521:2008-01-22 13:00:40 [11288] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d0d3de]
6516616-2008-01-22 13:00:40 [11340] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6516713-2008-01-22 13:00:40 [11340] [0] INFO: HTTP: Opening server at port 8181.
6516786-2008-01-22 13:00:40 [11340] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6516865-2008-01-22 13:00:40 [11340] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6516950-2008-01-22 13:00:40 [11340] [0] INFO: Set up send sms service at port 8181
--
6519653-2008-01-22 13:01:06 [11340] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<18652425640> msg:<http://mb42.sprintpcs.com/deliver/gcd/2e08d3de197754cb2a5ab89e275f8b79_45324-138839.gcd>
6519843-2008-01-22 13:01:06 [11340] [3] DEBUG: Stored UUID 29d12d4a-fe87-4e3b-a1c3-620e8e798387
6519931-2008-01-22 13:01:06 [11340] [3] DEBUG: message length 87, sending 1 messages
6520008-2008-01-22 13:01:06 [11340] [3] ERROR: Start marker was damaged for area 0xe5cff90
6520091-2008-01-22 13:01:06 [11340] [3] ERROR: Could not find area information.
6520163:2008-01-22 13:01:06 [11340] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6520338:2008-01-22 13:01:06 [11340] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6520427:2008-01-22 13:01:06 [11340] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6520501:2008-01-22 13:01:06 [11340] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6520596:2008-01-22 13:01:06 [11340] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6520670:2008-01-22 13:01:06 [11340] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6520744:2008-01-22 13:01:06 [11340] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7ec2240]
6520831:2008-01-22 13:01:06 [11340] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d3d3de]
6520926-2008-01-22 13:01:40 [11365] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6521023-2008-01-22 13:01:40 [11365] [0] INFO: HTTP: Opening server at port 8181.
6521096-2008-01-22 13:01:40 [11365] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6521175-2008-01-22 13:01:40 [11365] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6521260-2008-01-22 13:01:40 [11365] [0] INFO: Set up send sms service at port 8181
--
6540357-2008-01-22 13:01:47 [11365] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<18652425640> msg:<You have unsubscribed from SMART Plan. You can resubscribe by ordering a product. For more info txt HELP ,call 1-888-218-4144 or visit www.smartlogos.tv>
6540612-2008-01-22 13:01:47 [11365] [3] DEBUG: Stored UUID 9631d23a-c62d-4cb4-9217-5051c540e5dd
6540700-2008-01-22 13:01:47 [11365] [3] DEBUG: message length 152, sending 1 messages
6540778-2008-01-22 13:01:47 [11365] [3] ERROR: Start marker was damaged for area 0xe5dcab8
6540861-2008-01-22 13:01:47 [11365] [3] ERROR: Could not find area information.
6540933:2008-01-22 13:01:47 [11365] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6541108:2008-01-22 13:01:47 [11365] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6541197:2008-01-22 13:01:47 [11365] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6541271:2008-01-22 13:01:47 [11365] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6541366:2008-01-22 13:01:47 [11365] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6541440:2008-01-22 13:01:47 [11365] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6541514:2008-01-22 13:01:47 [11365] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f5e240]
6541601:2008-01-22 13:01:47 [11365] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7dd93de]
6541696-2008-01-22 13:02:06 [11377] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6541793-2008-01-22 13:02:06 [11377] [0] INFO: HTTP: Opening server at port 8181.
6541866-2008-01-22 13:02:06 [11377] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6541945-2008-01-22 13:02:06 [11377] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6542030-2008-01-22 13:02:06 [11377] [0] INFO: Set up send sms service at port 8181
--
6574132-2008-01-22 13:10:16 [11377] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<16502426998> msg:<SMART Plan Subscription: $9.99 per month for 100 credits.  Send Y to accept, STOP to end, for help txt HELP or 1-888-218-4144 T&C + More at www.SmartLogos.tv>
6574392-2008-01-22 13:10:16 [11377] [3] DEBUG: Stored UUID d3b69d12-9d90-4c20-a83e-6fe64382e7e3
6574480-2008-01-22 13:10:16 [11377] [3] DEBUG: message length 157, sending 1 messages
6574558-2008-01-22 13:10:16 [11377] [3] ERROR: Start marker was damaged for area 0xe5cf870
6574641-2008-01-22 13:10:16 [11377] [3] ERROR: Could not find area information.
6574713:2008-01-22 13:10:16 [11377] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6574888:2008-01-22 13:10:16 [11377] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6574977:2008-01-22 13:10:16 [11377] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6575051:2008-01-22 13:10:16 [11377] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6575146:2008-01-22 13:10:16 [11377] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6575220:2008-01-22 13:10:16 [11377] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6575294:2008-01-22 13:10:16 [11377] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f48240]
6575381:2008-01-22 13:10:16 [11377] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7dc33de]
6575476-2008-01-22 13:10:16 [11518] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6575573-2008-01-22 13:10:16 [11518] [0] INFO: HTTP: Opening server at port 8181.
6575646-2008-01-22 13:10:16 [11518] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6575725-2008-01-22 13:10:16 [11518] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6575810-2008-01-22 13:10:16 [11518] [0] INFO: Set up send sms service at port 8181
--
6595186-2008-01-22 13:13:06 [11518] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<16502426998> msg:<Due to restrictions from Verizon Wireless you cannot renew your account again this month. Please try again next month.>
6595407-2008-01-22 13:13:06 [11518] [3] DEBUG: Stored UUID 1ef474df-b438-475d-b227-afe3f7ce0bfa
6595495-2008-01-22 13:13:06 [11518] [3] DEBUG: message length 118, sending 1 messages
6595573-2008-01-22 13:13:06 [11518] [3] ERROR: Start marker was damaged for area 0xe59ecb8
6595656-2008-01-22 13:13:06 [11518] [3] ERROR: Could not find area information.
6595728:2008-01-22 13:13:06 [11518] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6595903:2008-01-22 13:13:06 [11518] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6595992:2008-01-22 13:13:06 [11518] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6596066:2008-01-22 13:13:06 [11518] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6596161:2008-01-22 13:13:06 [11518] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6596235:2008-01-22 13:13:06 [11518] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6596309:2008-01-22 13:13:06 [11518] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f2a240]
6596396:2008-01-22 13:13:06 [11518] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7da53de]
6596491-2008-01-22 13:13:06 [11545] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6596588-2008-01-22 13:13:06 [11545] [0] INFO: HTTP: Opening server at port 8181.
6596661-2008-01-22 13:13:06 [11545] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6596740-2008-01-22 13:13:06 [11545] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6596825-2008-01-22 13:13:06 [11545] [0] INFO: Set up send sms service at port 8181
--
6618560-2008-01-22 13:19:02 [11545] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157301349> msg:<SMART Plan Subscription: $9.99 per month for 100 credits.  Send Y to accept, STOP to end, for help txt HELP or 1-888-218-4144 T&C + More at www.SmartLogos.tv>
6618820-2008-01-22 13:19:02 [11545] [3] DEBUG: Stored UUID 35a7340a-cbae-4c1b-9891-cd77822f2481
6618908-2008-01-22 13:19:02 [11545] [3] DEBUG: message length 157, sending 1 messages
6618986-2008-01-22 13:19:02 [11545] [3] ERROR: Start marker was damaged for area 0xe5ba338
6619069-2008-01-22 13:19:02 [11545] [3] ERROR: Could not find area information.
6619141:2008-01-22 13:19:02 [11545] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6619316:2008-01-22 13:19:02 [11545] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6619405:2008-01-22 13:19:02 [11545] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6619479:2008-01-22 13:19:02 [11545] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6619574:2008-01-22 13:19:02 [11545] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6619648:2008-01-22 13:19:02 [11545] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6619722:2008-01-22 13:19:02 [11545] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7eef240]
6619809:2008-01-22 13:19:02 [11545] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d6a3de]
6619904-2008-01-22 13:19:02 [11622] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6620001-2008-01-22 13:19:02 [11622] [0] INFO: HTTP: Opening server at port 8181.
6620074-2008-01-22 13:19:02 [11622] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6620153-2008-01-22 13:19:02 [11622] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6620238-2008-01-22 13:19:02 [11622] [0] INFO: Set up send sms service at port 8181
--
6626470-2008-01-22 13:20:07 [11622] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157301349> msg:<START>
6626578-2008-01-22 13:20:07 [11622] [3] DEBUG: Stored UUID 32b39d6a-e693-491d-9994-485b554cfbff
6626666-2008-01-22 13:20:07 [11622] [3] DEBUG: message length 5, sending 1 messages
6626742-2008-01-22 13:20:07 [11622] [3] ERROR: Start marker was damaged for area 0xe5d32e0
6626825-2008-01-22 13:20:07 [11622] [3] ERROR: Could not find area information.
6626897:2008-01-22 13:20:07 [11622] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6627072:2008-01-22 13:20:07 [11622] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6627161:2008-01-22 13:20:07 [11622] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6627235:2008-01-22 13:20:07 [11622] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6627330:2008-01-22 13:20:07 [11622] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6627404:2008-01-22 13:20:07 [11622] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6627478:2008-01-22 13:20:07 [11622] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f5c240]
6627565:2008-01-22 13:20:07 [11622] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7dd73de]
6627660-2008-01-22 13:20:07 [11674] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6627757-2008-01-22 13:20:07 [11674] [0] INFO: HTTP: Opening server at port 8181.
6627830-2008-01-22 13:20:07 [11674] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6627909-2008-01-22 13:20:07 [11674] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6627994-2008-01-22 13:20:07 [11674] [0] INFO: Set up send sms service at port 8181
--
6654103-2008-01-22 13:24:53 [11674] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<®j>
6654213-2008-01-22 13:24:53 [11674] [3] DEBUG: Stored UUID ef753b66-f0e1-40c2-a87d-f49fa77b5637
6654301-2008-01-22 13:24:53 [11674] [3] DEBUG: message length 101, sending 1 messages
6654379-2008-01-22 13:24:53 [11674] [3] ERROR: Start marker was damaged for area 0xe5a97b0
6654462-2008-01-22 13:24:53 [11674] [3] ERROR: Could not find area information.
6654534:2008-01-22 13:24:53 [11674] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6654709:2008-01-22 13:24:53 [11674] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6654798:2008-01-22 13:24:53 [11674] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6654872:2008-01-22 13:24:53 [11674] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6654967:2008-01-22 13:24:53 [11674] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6655041:2008-01-22 13:24:53 [11674] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6655115:2008-01-22 13:24:53 [11674] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f5f240]
6655202:2008-01-22 13:24:53 [11674] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7dda3de]
6655297-2008-01-22 13:24:53 [11748] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6655394-2008-01-22 13:24:53 [11748] [0] INFO: HTTP: Opening server at port 8181.
6655467-2008-01-22 13:24:53 [11748] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6655546-2008-01-22 13:24:53 [11748] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6655631-2008-01-22 13:24:53 [11748] [0] INFO: Set up send sms service at port 8181
--
6671341-2008-01-22 13:25:06 [11748] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<®j>
6671451-2008-01-22 13:25:06 [11748] [3] DEBUG: Stored UUID c3862e84-f530-472d-a53e-b2a03f0edacb
6671539-2008-01-22 13:25:06 [11748] [3] DEBUG: message length 101, sending 1 messages
6671617-2008-01-22 13:25:06 [11748] [3] ERROR: Start marker was damaged for area 0xe5da968
6671700-2008-01-22 13:25:06 [11748] [3] ERROR: Could not find area information.
6671772:2008-01-22 13:25:06 [11748] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6671947:2008-01-22 13:25:06 [11748] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6672036:2008-01-22 13:25:06 [11748] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6672110:2008-01-22 13:25:06 [11748] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6672205:2008-01-22 13:25:06 [11748] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6672279:2008-01-22 13:25:06 [11748] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6672353:2008-01-22 13:25:06 [11748] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f4d240]
6672440:2008-01-22 13:25:06 [11748] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7dc83de]
6672535-2008-01-22 13:25:54 [11776] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6672632-2008-01-22 13:25:54 [11776] [0] INFO: HTTP: Opening server at port 8181.
6672705-2008-01-22 13:25:54 [11776] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6672784-2008-01-22 13:25:54 [11776] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6672869-2008-01-22 13:25:54 [11776] [0] INFO: Set up send sms service at port 8181
--
6716313-2008-01-22 13:27:06 [11776] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157301349> msg:<®j>
6716423-2008-01-22 13:27:06 [11776] [3] DEBUG: Stored UUID 63e599e4-218f-43c2-af7d-556a6371eede
6716511-2008-01-22 13:27:06 [11776] [3] DEBUG: message length 101, sending 1 messages
6716589-2008-01-22 13:27:06 [11776] [3] ERROR: Start marker was damaged for area 0xe5b8498
6716672-2008-01-22 13:27:06 [11776] [3] ERROR: Could not find area information.
6716744:2008-01-22 13:27:06 [11776] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6716919:2008-01-22 13:27:06 [11776] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6717008:2008-01-22 13:27:06 [11776] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6717082:2008-01-22 13:27:06 [11776] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6717177:2008-01-22 13:27:06 [11776] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6717251:2008-01-22 13:27:06 [11776] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6717325:2008-01-22 13:27:06 [11776] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f0a240]
6717412:2008-01-22 13:27:06 [11776] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d853de]
6717507-2008-01-22 13:27:06 [11788] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6717604-2008-01-22 13:27:06 [11788] [0] INFO: HTTP: Opening server at port 8181.
6717677-2008-01-22 13:27:06 [11788] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6717756-2008-01-22 13:27:06 [11788] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6717841-2008-01-22 13:27:06 [11788] [0] INFO: Set up send sms service at port 8181
--
6721604-2008-01-22 13:27:06 [11788] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<Thank you for using our service. You have 94 credits left. To use send item code to 44777. To unsubscribe send STOP, for HELP send HELP or call 1-888-218-4144>
6721865-2008-01-22 13:27:06 [11788] [3] DEBUG: Stored UUID d53580ba-33e7-4e9e-9e9e-915d972ceae8
6721953-2008-01-22 13:27:06 [11788] [3] DEBUG: message length 158, sending 1 messages
6722031-2008-01-22 13:27:06 [11788] [3] ERROR: Start marker was damaged for area 0xe5d6cc0
6722114-2008-01-22 13:27:06 [11788] [3] ERROR: Could not find area information.
6722186:2008-01-22 13:27:06 [11788] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6722361:2008-01-22 13:27:06 [11788] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6722450:2008-01-22 13:27:06 [11788] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6722524:2008-01-22 13:27:06 [11788] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6722619:2008-01-22 13:27:06 [11788] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6722693:2008-01-22 13:27:06 [11788] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6722767:2008-01-22 13:27:06 [11788] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7eab240]
6722854:2008-01-22 13:27:06 [11788] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d263de]
6722949-2008-01-22 13:28:06 [11798] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6723046-2008-01-22 13:28:06 [11798] [0] INFO: HTTP: Opening server at port 8181.
6723119-2008-01-22 13:28:06 [11798] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6723198-2008-01-22 13:28:06 [11798] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6723283-2008-01-22 13:28:06 [11798] [0] INFO: Set up send sms service at port 8181
--
6765442-2008-01-22 13:29:06 [11798] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157301349> msg:<®j>
6765552-2008-01-22 13:29:06 [11798] [3] DEBUG: Stored UUID 3b955823-e1e1-480b-a1b0-89976166da15
6765640-2008-01-22 13:29:06 [11798] [3] DEBUG: message length 101, sending 1 messages
6765718-2008-01-22 13:29:06 [11798] [3] ERROR: Start marker was damaged for area 0xe5bf508
6765801-2008-01-22 13:29:06 [11798] [3] ERROR: Could not find area information.
6765873:2008-01-22 13:29:06 [11798] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6766048:2008-01-22 13:29:06 [11798] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6766137:2008-01-22 13:29:06 [11798] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6766211:2008-01-22 13:29:06 [11798] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6766306:2008-01-22 13:29:06 [11798] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6766380:2008-01-22 13:29:06 [11798] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6766454:2008-01-22 13:29:06 [11798] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7e9c240]
6766541:2008-01-22 13:29:06 [11798] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d173de]
6766636-2008-01-22 13:29:06 [11815] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6766733-2008-01-22 13:29:06 [11815] [0] INFO: HTTP: Opening server at port 8181.
6766806-2008-01-22 13:29:06 [11815] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6766885-2008-01-22 13:29:06 [11815] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6766970-2008-01-22 13:29:06 [11815] [0] INFO: Set up send sms service at port 8181
--
6782803-2008-01-22 13:30:12 [11815] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<®j>
6782913-2008-01-22 13:30:12 [11815] [3] DEBUG: Stored UUID 520419b2-e33d-45ae-bf14-d970d24461dc
6783001-2008-01-22 13:30:12 [11815] [3] DEBUG: message length 101, sending 1 messages
6783079-2008-01-22 13:30:12 [11815] [3] ERROR: Start marker was damaged for area 0xe5db3b8
6783162-2008-01-22 13:30:12 [11815] [3] ERROR: Could not find area information.
6783234:2008-01-22 13:30:12 [11815] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6783409:2008-01-22 13:30:12 [11815] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6783498:2008-01-22 13:30:12 [11815] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6783572:2008-01-22 13:30:12 [11815] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6783667:2008-01-22 13:30:12 [11815] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6783741:2008-01-22 13:30:12 [11815] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6783815:2008-01-22 13:30:12 [11815] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f1b240]
6783902:2008-01-22 13:30:12 [11815] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d963de]
6783997-2008-01-22 13:30:12 [11867] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6784094-2008-01-22 13:30:12 [11867] [0] INFO: HTTP: Opening server at port 8181.
6784167-2008-01-22 13:30:12 [11867] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6784246-2008-01-22 13:30:12 [11867] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6784331-2008-01-22 13:30:12 [11867] [0] INFO: Set up send sms service at port 8181
--
6814790-2008-01-22 13:31:05 [11867] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<Thank you for using our service. You have 94 credits left. To use send item code to 44777. To unsubscribe send STOP, for HELP send HELP or call 1-888-218-4144>
6815051-2008-01-22 13:31:05 [11867] [3] DEBUG: Stored UUID 45968196-a7e7-4644-be90-6ed9366f5b5a
6815139-2008-01-22 13:31:05 [11867] [3] DEBUG: message length 158, sending 1 messages
6815217-2008-01-22 13:31:05 [11867] [3] ERROR: Start marker was damaged for area 0xe5b4808
6815300-2008-01-22 13:31:05 [11867] [3] ERROR: Could not find area information.
6815372:2008-01-22 13:31:05 [11867] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6815547:2008-01-22 13:31:05 [11867] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6815636:2008-01-22 13:31:05 [11867] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6815710:2008-01-22 13:31:05 [11867] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6815805:2008-01-22 13:31:05 [11867] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6815879:2008-01-22 13:31:05 [11867] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6815953:2008-01-22 13:31:05 [11867] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f65240]
6816040:2008-01-22 13:31:05 [11867] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7de03de]
6816135-2008-01-22 13:31:12 [11894] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6816232-2008-01-22 13:31:12 [11894] [0] INFO: HTTP: Opening server at port 8181.
6816305-2008-01-22 13:31:12 [11894] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6816384-2008-01-22 13:31:12 [11894] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6816469-2008-01-22 13:31:12 [11894] [0] INFO: Set up send sms service at port 8181
--
6839869-2008-01-22 13:33:06 [11894] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157301349> msg:<®j>
6839979-2008-01-22 13:33:06 [11894] [3] DEBUG: Stored UUID 55a32624-0d50-4090-83a9-54d05ff0840e
6840067-2008-01-22 13:33:06 [11894] [3] DEBUG: message length 101, sending 1 messages
6840145-2008-01-22 13:33:06 [11894] [3] ERROR: Start marker was damaged for area 0xe5df0c0
6840228-2008-01-22 13:33:06 [11894] [3] ERROR: Could not find area information.
6840300:2008-01-22 13:33:06 [11894] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6840475:2008-01-22 13:33:06 [11894] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6840564:2008-01-22 13:33:06 [11894] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6840638:2008-01-22 13:33:06 [11894] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6840733:2008-01-22 13:33:06 [11894] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6840807:2008-01-22 13:33:06 [11894] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6840881:2008-01-22 13:33:06 [11894] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7e98240]
6840968:2008-01-22 13:33:06 [11894] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d133de]
6841063-2008-01-22 13:33:06 [11906] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6841160-2008-01-22 13:33:06 [11906] [0] INFO: HTTP: Opening server at port 8181.
6841233-2008-01-22 13:33:06 [11906] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6841312-2008-01-22 13:33:06 [11906] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6841397-2008-01-22 13:33:06 [11906] [0] INFO: Set up send sms service at port 8181
--
6857608-2008-01-22 13:35:06 [11906] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157301349> msg:<®j>
6857718-2008-01-22 13:35:06 [11906] [3] DEBUG: Stored UUID ab56730a-4b92-4129-afdb-2036ae8e30dd
6857806-2008-01-22 13:35:06 [11906] [3] DEBUG: message length 101, sending 1 messages
6857884-2008-01-22 13:35:06 [11906] [3] ERROR: Start marker was damaged for area 0xe5db380
6857967-2008-01-22 13:35:06 [11906] [3] ERROR: Could not find area information.
6858039:2008-01-22 13:35:06 [11906] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6858214:2008-01-22 13:35:06 [11906] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6858303:2008-01-22 13:35:06 [11906] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6858377:2008-01-22 13:35:06 [11906] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6858472:2008-01-22 13:35:06 [11906] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6858546:2008-01-22 13:35:06 [11906] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6858620:2008-01-22 13:35:06 [11906] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f0d240]
6858707:2008-01-22 13:35:06 [11906] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d883de]
6858802-2008-01-22 13:35:06 [11963] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6858899-2008-01-22 13:35:06 [11963] [0] INFO: HTTP: Opening server at port 8181.
6858972-2008-01-22 13:35:06 [11963] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6859051-2008-01-22 13:35:06 [11963] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6859136-2008-01-22 13:35:06 [11963] [0] INFO: Set up send sms service at port 8181
--
6875347-2008-01-22 13:37:06 [11963] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<®j>
6875457-2008-01-22 13:37:06 [11963] [3] DEBUG: Stored UUID 65a513c3-f2e3-4224-be91-453b4f07f94e
6875545-2008-01-22 13:37:06 [11963] [3] DEBUG: message length 101, sending 1 messages
6875623-2008-01-22 13:37:06 [11963] [3] ERROR: Start marker was damaged for area 0xe5db380
6875706-2008-01-22 13:37:06 [11963] [3] ERROR: Could not find area information.
6875778:2008-01-22 13:37:06 [11963] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6875953:2008-01-22 13:37:06 [11963] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6876042:2008-01-22 13:37:06 [11963] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6876116:2008-01-22 13:37:06 [11963] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6876211:2008-01-22 13:37:06 [11963] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6876285:2008-01-22 13:37:06 [11963] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6876359:2008-01-22 13:37:06 [11963] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7e98240]
6876446:2008-01-22 13:37:06 [11963] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d133de]
6876541-2008-01-22 13:37:06 [11990] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6876638-2008-01-22 13:37:06 [11990] [0] INFO: HTTP: Opening server at port 8181.
6876711-2008-01-22 13:37:06 [11990] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6876790-2008-01-22 13:37:06 [11990] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6876875-2008-01-22 13:37:06 [11990] [0] INFO: Set up send sms service at port 8181
--
6885966-2008-01-22 13:38:28 [11990] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<®j>
6886076-2008-01-22 13:38:28 [11990] [3] DEBUG: Stored UUID 952cde18-844c-418b-98f5-31f1da8abdeb
6886164-2008-01-22 13:38:28 [11990] [3] DEBUG: message length 101, sending 1 messages
6886242-2008-01-22 13:38:28 [11990] [3] ERROR: Start marker was damaged for area 0xe5d4dc0
6886325-2008-01-22 13:38:28 [11990] [3] ERROR: Could not find area information.
6886397:2008-01-22 13:38:28 [11990] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6886572:2008-01-22 13:38:28 [11990] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6886661:2008-01-22 13:38:28 [11990] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6886735:2008-01-22 13:38:28 [11990] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6886830:2008-01-22 13:38:28 [11990] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6886904:2008-01-22 13:38:28 [11990] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6886978:2008-01-22 13:38:28 [11990] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7eaa240]
6887065:2008-01-22 13:38:28 [11990] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d253de]
6887160-2008-01-22 13:38:28 [12022] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6887257-2008-01-22 13:38:28 [12022] [0] INFO: HTTP: Opening server at port 8181.
6887330-2008-01-22 13:38:28 [12022] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6887409-2008-01-22 13:38:28 [12022] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6887494-2008-01-22 13:38:28 [12022] [0] INFO: Set up send sms service at port 8181
--
6910767-2008-01-22 13:39:06 [12022] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157301349> msg:<®j>
6910877-2008-01-22 13:39:06 [12022] [3] DEBUG: Stored UUID 3816855b-4411-4265-8d79-7b3fead72d62
6910965-2008-01-22 13:39:06 [12022] [3] DEBUG: message length 101, sending 1 messages
6911043-2008-01-22 13:39:06 [12022] [3] ERROR: Start marker was damaged for area 0xe5ae3b8
6911126-2008-01-22 13:39:06 [12022] [3] ERROR: Could not find area information.
6911198:2008-01-22 13:39:06 [12022] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6911373:2008-01-22 13:39:06 [12022] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6911462:2008-01-22 13:39:06 [12022] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6911536:2008-01-22 13:39:06 [12022] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6911631:2008-01-22 13:39:06 [12022] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6911705:2008-01-22 13:39:06 [12022] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6911779:2008-01-22 13:39:06 [12022] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f32240]
6911866:2008-01-22 13:39:06 [12022] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7dad3de]
6911961-2008-01-22 13:39:28 [12039] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6912058-2008-01-22 13:39:28 [12039] [0] INFO: HTTP: Opening server at port 8181.
6912131-2008-01-22 13:39:28 [12039] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6912210-2008-01-22 13:39:28 [12039] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6912295-2008-01-22 13:39:28 [12039] [0] INFO: Set up send sms service at port 8181
--
6957250-2008-01-22 13:41:06 [12039] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157301349> msg:<®j>
6957360-2008-01-22 13:41:06 [12039] [3] DEBUG: Stored UUID 8e63c75a-32b1-4aa2-b81f-a5f7df0658ae
6957448-2008-01-22 13:41:06 [12039] [3] DEBUG: message length 101, sending 1 messages
6957526-2008-01-22 13:41:06 [12039] [3] ERROR: Start marker was damaged for area 0xe5cec70
6957609-2008-01-22 13:41:06 [12039] [3] ERROR: Could not find area information.
6957681:2008-01-22 13:41:06 [12039] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6957856:2008-01-22 13:41:06 [12039] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6957945:2008-01-22 13:41:06 [12039] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6958019:2008-01-22 13:41:06 [12039] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6958114:2008-01-22 13:41:06 [12039] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6958188:2008-01-22 13:41:06 [12039] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6958262:2008-01-22 13:41:06 [12039] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f1d240]
6958349:2008-01-22 13:41:06 [12039] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d983de]
6958444-2008-01-22 13:41:06 [12106] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6958541-2008-01-22 13:41:06 [12106] [0] INFO: HTTP: Opening server at port 8181.
6958614-2008-01-22 13:41:06 [12106] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6958693-2008-01-22 13:41:06 [12106] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6958778-2008-01-22 13:41:06 [12106] [0] INFO: Set up send sms service at port 8181
--
6978166-2008-01-22 13:42:14 [12106] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<15705902743> msg:<You are not subscribed to our services. For more info send HELP ,call 1-888-218-4144 or visit www.smartlogos.tv>
6978380-2008-01-22 13:42:14 [12106] [3] DEBUG: Stored UUID bd6f0f75-19f9-420b-89f0-a23a2d5b7e5d
6978468-2008-01-22 13:42:14 [12106] [3] DEBUG: message length 111, sending 1 messages
6978546-2008-01-22 13:42:14 [12106] [3] ERROR: Start marker was damaged for area 0xe576a70
6978629-2008-01-22 13:42:14 [12106] [3] ERROR: Could not find area information.
6978701:2008-01-22 13:42:14 [12106] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6978876:2008-01-22 13:42:14 [12106] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6978965:2008-01-22 13:42:14 [12106] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6979039:2008-01-22 13:42:14 [12106] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6979134:2008-01-22 13:42:14 [12106] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6979208:2008-01-22 13:42:14 [12106] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6979282:2008-01-22 13:42:14 [12106] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7ef4240]
6979369:2008-01-22 13:42:14 [12106] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d6f3de]
6979464-2008-01-22 13:42:14 [12118] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6979561-2008-01-22 13:42:14 [12118] [0] INFO: HTTP: Opening server at port 8181.
6979634-2008-01-22 13:42:14 [12118] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6979713-2008-01-22 13:42:14 [12118] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6979798-2008-01-22 13:42:14 [12118] [0] INFO: Set up send sms service at port 8181
--
6982501-2008-01-22 13:42:45 [12118] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<®j>
6982611-2008-01-22 13:42:45 [12118] [3] DEBUG: Stored UUID 744c797b-2d26-4cc7-b911-91b0fa1f0636
6982699-2008-01-22 13:42:45 [12118] [3] DEBUG: message length 101, sending 1 messages
6982777-2008-01-22 13:42:45 [12118] [3] ERROR: Start marker was damaged for area 0xe5b0e10
6982860-2008-01-22 13:42:45 [12118] [3] ERROR: Could not find area information.
6982932:2008-01-22 13:42:45 [12118] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
6983107:2008-01-22 13:42:45 [12118] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
6983196:2008-01-22 13:42:45 [12118] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
6983270:2008-01-22 13:42:45 [12118] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
6983365:2008-01-22 13:42:45 [12118] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
6983439:2008-01-22 13:42:45 [12118] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
6983513:2008-01-22 13:42:45 [12118] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7edd240]
6983600:2008-01-22 13:42:45 [12118] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d583de]
6983695-2008-01-22 13:43:15 [12128] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
6983792-2008-01-22 13:43:15 [12128] [0] INFO: HTTP: Opening server at port 8181.
6983865-2008-01-22 13:43:15 [12128] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
6983944-2008-01-22 13:43:15 [12128] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
6984029-2008-01-22 13:43:15 [12128] [0] INFO: Set up send sms service at port 8181
--
7014678-2008-01-22 13:48:08 [12128] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<®j>
7014788-2008-01-22 13:48:08 [12128] [3] DEBUG: Stored UUID 402aebc0-dd65-4382-ab60-34d2b95c0771
7014876-2008-01-22 13:48:08 [12128] [3] DEBUG: message length 101, sending 1 messages
7014954-2008-01-22 13:48:08 [12128] [3] ERROR: Start marker was damaged for area 0xe5be690
7015037-2008-01-22 13:48:08 [12128] [3] ERROR: Could not find area information.
7015109:2008-01-22 13:48:08 [12128] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
7015284:2008-01-22 13:48:08 [12128] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
7015373:2008-01-22 13:48:08 [12128] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
7015447:2008-01-22 13:48:08 [12128] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
7015542:2008-01-22 13:48:08 [12128] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
7015616:2008-01-22 13:48:08 [12128] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
7015690:2008-01-22 13:48:08 [12128] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f5f240]
7015777:2008-01-22 13:48:08 [12128] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7dda3de]
7015872-2008-01-22 13:48:08 [12200] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
7015969-2008-01-22 13:48:08 [12200] [0] INFO: HTTP: Opening server at port 8181.
7016042-2008-01-22 13:48:08 [12200] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
7016121-2008-01-22 13:48:08 [12200] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
7016206-2008-01-22 13:48:08 [12200] [0] INFO: Set up send sms service at port 8181
--
7039603-2008-01-22 13:49:06 [12200] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<Thank you for using our service. You have 88 credits left. To use send item code to 44777. To unsubscribe send STOP, for HELP send HELP or call 1-888-218-4144>
7039864-2008-01-22 13:49:06 [12200] [3] DEBUG: Stored UUID d229ced4-6c52-4ea9-8680-b2dc2b7e8b4b
7039952-2008-01-22 13:49:06 [12200] [3] DEBUG: message length 158, sending 1 messages
7040030-2008-01-22 13:49:06 [12200] [3] ERROR: Start marker was damaged for area 0xe5e03c0
7040113-2008-01-22 13:49:06 [12200] [3] ERROR: Could not find area information.
7040185:2008-01-22 13:49:06 [12200] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
7040360:2008-01-22 13:49:06 [12200] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
7040449:2008-01-22 13:49:06 [12200] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
7040523:2008-01-22 13:49:06 [12200] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
7040618:2008-01-22 13:49:06 [12200] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
7040692:2008-01-22 13:49:06 [12200] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
7040766:2008-01-22 13:49:06 [12200] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f72240]
7040853:2008-01-22 13:49:06 [12200] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7ded3de]
7040948-2008-01-22 13:49:08 [12212] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
7041045-2008-01-22 13:49:08 [12212] [0] INFO: HTTP: Opening server at port 8181.
7041118-2008-01-22 13:49:08 [12212] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
7041197-2008-01-22 13:49:08 [12212] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
7041282-2008-01-22 13:49:08 [12212] [0] INFO: Set up send sms service at port 8181
--
7096045-2008-01-22 14:03:18 [12212] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<®j>
7096155-2008-01-22 14:03:18 [12212] [3] DEBUG: Stored UUID c513ca4d-9adc-405f-af12-0fb91ab8c13f
7096243-2008-01-22 14:03:18 [12212] [3] DEBUG: message length 101, sending 1 messages
7096321-2008-01-22 14:03:18 [12212] [3] ERROR: Start marker was damaged for area 0xe5cf488
7096404-2008-01-22 14:03:18 [12212] [3] ERROR: Could not find area information.
7096476:2008-01-22 14:03:18 [12212] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
7096651:2008-01-22 14:03:18 [12212] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
7096740:2008-01-22 14:03:18 [12212] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
7096814:2008-01-22 14:03:18 [12212] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
7096909:2008-01-22 14:03:18 [12212] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
7096983:2008-01-22 14:03:18 [12212] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
7097057:2008-01-22 14:03:18 [12212] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7ebe240]
7097144:2008-01-22 14:03:18 [12212] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d393de]
7097239-2008-01-22 14:03:18 [12422] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
7097336-2008-01-22 14:03:18 [12422] [0] INFO: HTTP: Opening server at port 8181.
7097409-2008-01-22 14:03:18 [12422] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
7097488-2008-01-22 14:03:18 [12422] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
7097573-2008-01-22 14:03:18 [12422] [0] INFO: Set up send sms service at port 8181
--
7131606-2008-01-22 14:05:06 [12422] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<Thank you for using our service. You have 85 credits left. To use send item code to 44777. To unsubscribe send STOP, for HELP send HELP or call 1-888-218-4144>
7131867-2008-01-22 14:05:06 [12422] [3] DEBUG: Stored UUID f4eb604c-a04b-42a3-8d24-3b0ee42e4b70
7131955-2008-01-22 14:05:06 [12422] [3] DEBUG: message length 158, sending 1 messages
7132033-2008-01-22 14:05:06 [12422] [3] ERROR: Start marker was damaged for area 0xe5cfda0
7132116-2008-01-22 14:05:06 [12422] [3] ERROR: Could not find area information.
7132188:2008-01-22 14:05:06 [12422] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
7132363:2008-01-22 14:05:06 [12422] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
7132452:2008-01-22 14:05:06 [12422] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
7132526:2008-01-22 14:05:06 [12422] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
7132621:2008-01-22 14:05:06 [12422] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
7132695:2008-01-22 14:05:06 [12422] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
7132769:2008-01-22 14:05:06 [12422] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7f68240]
7132856:2008-01-22 14:05:06 [12422] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7de33de]
7132951-2008-01-22 14:05:06 [12440] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
7133048-2008-01-22 14:05:06 [12440] [0] INFO: HTTP: Opening server at port 8181.
7133121-2008-01-22 14:05:06 [12440] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
7133200-2008-01-22 14:05:06 [12440] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
7133285-2008-01-22 14:05:06 [12440] [0] INFO: Set up send sms service at port 8181
--
7149372-2008-01-22 14:05:08 [12440] [3] INFO: sendsms sender:<test:44777> (10.10.3.27) to:<14157936438> msg:<START>
7149480-2008-01-22 14:05:08 [12440] [3] DEBUG: Stored UUID a57c7652-b376-4e96-9f8e-a1b52fedcc96
7149568-2008-01-22 14:05:08 [12440] [3] DEBUG: message length 5, sending 1 messages
7149644-2008-01-22 14:05:08 [12440] [3] ERROR: Start marker was damaged for area 0xe5da828
7149727-2008-01-22 14:05:08 [12440] [3] ERROR: Could not find area information.
7149799:2008-01-22 14:05:08 [12440] [3] PANIC: gwlib/octstr.c:2472: seems_valid_real: Assertion `gw_check_is_allocated(ostr)' failed. (Called from gwlib/octstr.c:324:octstr_destroy.)
7149974:2008-01-22 14:05:08 [12440] [3] PANIC: /usr/local/sbin/smsbox(gw_panic+0xdc) [0x808ae9c]
7150063:2008-01-22 14:05:08 [12440] [3] PANIC: /usr/local/sbin/smsbox [0x808b628]
7150137:2008-01-22 14:05:08 [12440] [3] PANIC: /usr/local/sbin/smsbox(octstr_destroy+0x26) [0x808dc46]
7150232:2008-01-22 14:05:08 [12440] [3] PANIC: /usr/local/sbin/smsbox [0x8059493]
7150306:2008-01-22 14:05:08 [12440] [3] PANIC: /usr/local/sbin/smsbox [0x8080b6e]
7150380:2008-01-22 14:05:08 [12440] [3] PANIC: /lib/tls/i686/cmov/libpthread.so.0 [0xb7eae240]
7150467:2008-01-22 14:05:08 [12440] [3] PANIC: /lib/tls/i686/cmov/libc.so.6(__clone+0x5e) [0xb7d293de]
7150562-2008-01-22 14:06:06 [12452] [0] INFO: Added logfile `/var/log/kannel/smsbox.log' with level `0'.
7150659-2008-01-22 14:06:06 [12452] [0] INFO: HTTP: Opening server at port 8181.
7150732-2008-01-22 14:06:06 [12452] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller)
7150811-2008-01-22 14:06:06 [12452] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
7150896-2008-01-22 14:06:06 [12452] [0] INFO: Set up send sms service at port 8181
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.