Re: recent SMPP patches.

2002-05-22 Thread Alex Judd
Part of the fun of being in Europe is that we believe everyone else is like we are. Thanks for fixing that. Alex On Wed, 22 May 2002, Oded Arbel wrote: * in computing relation_UTC_time, the logic assumes that all time zones have differences of 1 hour to one another, which is not correct -

Re: recent SMPP patches.

2002-05-22 Thread Stipe Tolj
Oded Arbel wrote: * smsc_id - if NULL, it duplicates the conn-name, but it does so before conn-name is created. not nice :-) could you provide a quick patch for how you mean it would be looking better, please? * destruction of relation_UTC_time in msg_to_pdu() - checking if it is null

Re: recent SMPP patches.

2002-05-22 Thread Alex Judd
Modify the central part of msg_to_pdu to the following /* work out 1/4 hour difference between local time and UTC/GMT */ gmtime = gw_gmtime(time(NULL)); localtime = gw_localtime(time(NULL)); gwqdiff = ((localtime.tm_hour - gmtime.tm_hour) * 4) + ((localtime.tm_min -

RE: recent SMPP patches.

2002-05-22 Thread Oded Arbel
-Original Message- From: Stipe Tolj [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 1:59 PM To: Oded Arbel Cc: Kannel-devel (E-mail); Alan McNatty Subject: Re: recent SMPP patches. Oded Arbel wrote: * smsc_id - if NULL, it duplicates the conn-name, but it does