~ubuntu-branches/debian/sid/kamailio/sid

« back to all changes in this revision

Viewing changes to obsolete/registrar/save.c

  • Committer: Package Import Robot
  • Author(s): Victor Seva
  • Date: 2014-01-06 11:47:13 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140106114713-t8xidp4arzrnyeya
Tags: 4.1.1-1
* New upstream release
* debian/patches:
  - add upstream fixes
* Added tls outbound websocket autheph dnssec modules
  - openssl exception added to their license
* removing sparc and ia64 from supported archs
  for mono module (Closes: #728915)

Show diffs side-by-side

added added

removed removed

Lines of Context:
295
295
                goto end; /* no dst_ip param */
296
296
        /* check if it's ipv4 or ipv6 */
297
297
        if (
298
 
#ifdef USE_IPV6
299
298
                        likely(((p = str2ip(&hooks.uri.dstip->body)) != 0) ||
300
299
                                ((p = str2ip6(&hooks.uri.dstip->body)) != 0))
301
 
#else /* ! USE_IPV6 */
302
 
                        likely(((p = str2ip(&hooks.uri.dstip->body)) != 0))
303
 
#endif /* USE_IPV6 */
304
300
                                ) {
305
301
                *ip = *p;
306
302
        } else