File: sysctl.h

package info (click to toggle)
netsniff-ng 0.6.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,704 kB
  • sloc: ansic: 47,365; yacc: 2,024; sh: 779; makefile: 513; lex: 459; python: 64
file content (9 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
#ifndef SYSCTL_H
#define SYSCTL_H

#define SYSCTL_PROC_PATH "/proc/sys/"

int sysctl_set_int(const char *file, int value);
int sysctl_get_int(const char *file, int *value);

#endif