delarp.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:3k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* delarp.c - DHCP server ARP deletion code */
  2. /* Copyright 1984 - 2001 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01b,09oct01,vvv  fixed mod hist
  8. 01a,07apr97,spm  created by modifying WIDE project DHCP implementation
  9. */
  10. /*
  11. DESCRIPTION
  12. This library contains the code used by the DHCP server to remove
  13. entries from the ARP cache for offered network addresses. This
  14. allows accurate ICMP checks by the server to determine if the address 
  15. is in use.
  16. INCLUDE_FILES: None
  17. */
  18. /*
  19.  * Modified by Akihiro Tominaga (tomy@sfc.wide.ad.jp)
  20.  */
  21. /*
  22.  * Copyright (c) 1984, 1993
  23.  *      The Regents of the University of California.  All rights reserved.
  24.  *
  25.  * This code is derived from software contributed to Berkeley by
  26.  * Sun Microsystems, Inc.
  27.  *
  28.  * Redistribution and use in source and binary forms, with or without
  29.  * modification, are permitted provided that the following conditions
  30.  * are met:
  31.  * 1. Redistributions of source code must retain the above copyright
  32.  *    notice, this list of conditions and the following disclaimer.
  33.  * 2. Redistributions in binary form must reproduce the above copyright
  34.  *    notice, this list of conditions and the following disclaimer in the
  35.  *    documentation and/or other materials provided with the distribution.
  36.  * 3. All advertising materials mentioning features or use of this software
  37.  *    must display the following acknowledgement:
  38.  *      This product includes software developed by the University of
  39.  *      California, Berkeley and its contributors.
  40.  * 4. Neither the name of the University nor the names of its contributors
  41.  *    may be used to endorse or promote products derived from this software
  42.  *    without specific prior written permission.
  43.  *
  44.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  45.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  46.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  47.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  48.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  49.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  50.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  51.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  52.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  53.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  54.  * SUCH DAMAGE.
  55.  */
  56. #include <sys/socket.h>
  57. #include <sys/ioctl.h>
  58. #include <net/if.h>
  59. #include <net/route.h>
  60. #include <netinet/in.h>
  61. #include <netinet/if_ether.h>
  62. #include <unistd.h>
  63. #include <string.h>
  64. #include "ioLib.h"  /* ioctl() declaration */
  65. #include "logLib.h"
  66. #include "sockLib.h"
  67. #include "taskLib.h"
  68. /*******************************************************************************
  69. *
  70. * delarp - delete an ARP entry
  71. *
  72. * This routine deletes the ARP entry associated with the given IP address
  73. * prior to checking its availability by issuing an ICMP request.
  74. *
  75. * RETURNS: N/A
  76. *
  77. * ERRNO: N/A
  78. *
  79. * NOMANUAL
  80. */
  81. void delarp
  82.     (
  83.     struct in_addr *target,
  84.     int sockfd
  85.     )
  86.     {
  87.     struct arpreq arq;
  88.     struct sockaddr_in *sin = NULL;
  89.     bzero ( (char *)&arq, sizeof (arq));
  90.     arq.arp_pa.sa_family = AF_INET;
  91.     sin = (struct sockaddr_in *)&arq.arp_pa;
  92.     sin->sin_family = AF_INET;
  93.     sin->sin_addr.s_addr = target->s_addr;
  94.     ioctl (sockfd, SIOCDARP, (int)&arq);
  95.     return;
  96.     }