diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-02-15 17:30:39 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-02-15 17:30:39 -0800 |
commit | 08c277b9867608b9ba8ddc8ae8c67d1ca8bb3ff5 (patch) | |
tree | d974af9a87c25ea863e8ce9f76dca2da6e83684e /bin | |
parent | bcdf7aa475b84adf5efc0bc775e84975f7e830a5 (diff) |
import public IP in voipswitch CDRs, RT#26228
Diffstat (limited to 'bin')
-rw-r--r-- | bin/cdr-voipswitch.import | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/cdr-voipswitch.import b/bin/cdr-voipswitch.import index 817c4bc73..a8ab9d944 100644 --- a/bin/cdr-voipswitch.import +++ b/bin/cdr-voipswitch.import @@ -121,11 +121,17 @@ my $imported = 0; my $row; while ( $row = $sth->fetchrow_hashref ) { + my $ip = $row->{ip_number}; + if ( $ip =~ /^([\d\.]+)\/([\d\.]*)$/ ) { + $ip = $1; + #$nat_ip = $2; + } + my $cdr = FS::cdr->new({ cdrid => $row->{id_call}, charged_party => sprintf('%.2d', $row->{client_type}). $row->{id_client}, - src_ip_addr => $row->{ip_number}, + src_ip_addr => $ip, src => $row->{caller_id}, dst => $row->{called_number}, startdate => str2time($row->{call_start}), |