Lines 360-366
sub _create_connection {
Link Here
|
360 |
|
360 |
|
361 |
if( $server->{servertype} eq 'sru' ) { |
361 |
if( $server->{servertype} eq 'sru' ) { |
362 |
foreach( split ',', $server->{sru_options}//'' ) { |
362 |
foreach( split ',', $server->{sru_options}//'' ) { |
363 |
my @temp= split '='; |
363 |
#first remove surrounding spaces at comma and equals-sign |
|
|
364 |
s/^\s+|\s+$//g; |
365 |
my @temp= split '=', $_, 2; |
366 |
@temp= map { s/^\s+|\s+$//g; $_; } @temp; |
364 |
$option1->option( $temp[0] => $temp[1] ) if @temp; |
367 |
$option1->option( $temp[0] => $temp[1] ) if @temp; |
365 |
} |
368 |
} |
366 |
} elsif( $server->{servertype} eq 'zed' ) { |
369 |
} elsif( $server->{servertype} eq 'zed' ) { |
367 |
- |
|
|