1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| create or replace function inet_aton(ip text) returns int8 as $$
declare
v int;
res int8 :=0;
i int :=3;
begin
foreach v in array string_to_array(ip,'.') loop
res := res+v*(256^i);
i :=i-1;
end loop;
return res;
end;
$$ language plpgsql;
create or replace function inet_ntoa(ip int8) returns text as $$
declare
res text :='';
begin
res := res || ((ip >> 24) & (2^8-1)::int);
res :=res || '.' || ((ip >> 16) & (2^8-1)::int);
res :=res || '.' || ((ip >> 8) & (2^8-1)::int);
res :=res || '.' || (ip & (2^8-1)::int);
return res;
end;
$$ language plpgsql;
|