ipforward_solaris.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:2k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * ipforward value get function for solaris.
  3.  * Copyright (C) 1997 Kunihiro Ishiguro
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  7.  * GNU Zebra is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  20.  * 02111-1307, USA.  
  21.  */
  22. #include <zebra.h>
  23. #include "memory.h"
  24. int
  25. ipforward ()
  26. {
  27.   int fd, ret;
  28.   int ipforwarding = 0;
  29.   char forward[] = "ip_forwarding";
  30.   char *buf;
  31.   struct strioctl si;
  32.   buf = (char *) XMALLOC (MTYPE_TMP, sizeof forward + 1);
  33.   strcpy (buf, forward);
  34.   fd = open ("/dev/ip", O_RDWR);
  35.   if (fd < 0) {
  36.     free (buf);
  37.     /* need logging here */
  38.     /* "I can't get ipforwarding value because can't open /dev/ip" */
  39.     return -1;
  40.   }
  41.   si.ic_cmd = ND_GET;
  42.   si.ic_timout = 0;
  43.   si.ic_len = strlen (buf) + 1;
  44.   si.ic_dp = (caddr_t) buf;
  45.   ret = ioctl (fd, I_STR, &si);
  46.   close (fd);
  47.   if (ret < 0) {
  48.     free (buf);
  49.     /* need logging here */
  50.     /* can't get ipforwarding value : ioctl failed */
  51.     return -1;
  52.   }
  53.   ipforwarding = atoi (buf);
  54.   free (buf);
  55.   return ipforwarding;
  56. }
  57. int
  58. ipforward_on ()
  59. {
  60.   return 0;
  61. }
  62. int
  63. ipforward_off ()
  64. {
  65.   return 0;
  66. }