clientsocket.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * clientsocket.c -- DHCP client socket creation
  4. *
  5. * udhcp client
  6. *
  7. * Russ Dill <Russ.Dill@asu.edu> July 2001
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. */
  23. #include <features.h>
  24. #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION)
  25. #include <netpacket/packet.h>
  26. #include <net/ethernet.h>
  27. #else
  28. #include <asm/types.h>
  29. #include <linux/if_packet.h>
  30. #include <linux/if_ether.h>
  31. #endif
  32. #include "common.h"
  33. int raw_socket(int ifindex)
  34. {
  35. int fd;
  36. struct sockaddr_ll sock;
  37. DEBUG("Opening raw socket on ifindex %d", ifindex);
  38. fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
  39. sock.sll_family = AF_PACKET;
  40. sock.sll_protocol = htons(ETH_P_IP);
  41. sock.sll_ifindex = ifindex;
  42. xbind(fd, (struct sockaddr *) &sock, sizeof(sock));
  43. return fd;
  44. }