X-Git-Url: http://dolda2000.com/gitweb/?p=icmp-dn.git;a=blobdiff_plain;f=nss-icmp.c;h=9c32c1c8d2bedf0bb706da481e9dc42dac08f3bf;hp=014f2573a140cd590bfa1a57f78983609382f7ab;hb=732b835938a7a80fe3c5ef71b84fa2ce0090bd01;hpb=ecbdf1d6919d66a9da85fad6045667f0cc0bd921 diff --git a/nss-icmp.c b/nss-icmp.c index 014f257..9c32c1c 100644 --- a/nss-icmp.c +++ b/nss-icmp.c @@ -1,3 +1,24 @@ +/* + * nss-icmp or libnss_icmp - GNU C Library NSS module to query host + * names by ICMP. + * Copyright (C) 2005 Fredrik Tolf + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the Free + * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, + * MA 02111-1307, USA + */ + #include #include #include @@ -367,3 +388,9 @@ enum nss_status _nss_icmp_gethostbyaddr_r(const void *addr, socklen_t len, int a DEBUGP("returning\n"); return(NSS_STATUS_SUCCESS); } + +/* + * Local Variables: + * compile-command: "gcc -shared -Wall -g -o libnss_icmp.so.2 nss-icmp.c" + * End: + */