File: ip2name.ip

package info (click to toggle)
lightsquid 1.8-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 532 kB
  • sloc: perl: 2,320; sh: 13; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 200 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#contributor: esl
#do nothing
#always return IP

sub StartIp2Name() {
}

sub Ip2Name($$$) {
  # $Lhost,$user,$Ltimestamp
  my $Lhost=shift;
  return $Lhost;
}

sub StopIp2Name() {
}

#warning !!!
1;