| version 1.87, 1999/05/04 20:13:09 |
version 1.88, 1999/06/26 06:16:48 |
| Line 1426 ip_sysctl(name, namelen, oldp, oldlenp, |
|
| Line 1426 ip_sysctl(name, namelen, oldp, oldlenp, |
|
| void *newp; |
void *newp; |
| size_t newlen; |
size_t newlen; |
| { |
{ |
| extern int subnetsarelocal; |
extern int subnetsarelocal, hostzeroisbroadcast; |
| |
|
| int error, old; |
int error, old; |
| |
|
| Line 1518 ip_sysctl(name, namelen, oldp, oldlenp, |
|
| Line 1518 ip_sysctl(name, namelen, oldp, oldlenp, |
|
| return (error); |
return (error); |
| } |
} |
| #endif |
#endif |
| |
case IPCTL_HOSTZEROBROADCAST: |
| |
return (sysctl_int(oldp, oldlenp, newp, newlen, |
| |
&hostzeroisbroadcast)); |
| |
|
| default: |
default: |
| return (EOPNOTSUPP); |
return (EOPNOTSUPP); |
| } |
} |