projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30aff5e
)
Stub for VpnMask config directive.
author
Guus Sliepen
<guus@tinc-vpn.org>
Tue, 16 May 2000 13:09:15 +0000
(13:09 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Tue, 16 May 2000 13:09:15 +0000
(13:09 +0000)
src/conf.c
patch
|
blob
|
history
src/conf.h
patch
|
blob
|
history
diff --git
a/src/conf.c
b/src/conf.c
index
a9c136e
..
4431ccf
100644
(file)
--- a/
src/conf.c
+++ b/
src/conf.c
@@
-59,6
+59,7
@@
static internal_config_t hazahaza[] = {
{ "PingTimeout", pingtimeout, TYPE_INT },
{ "TapDevice", tapdevice, TYPE_NAME },
{ "KeyExpire", keyexpire, TYPE_INT },
+ { "VpnMask", vpnmask, TYPE_IP },
{ NULL, 0, 0 }
};
diff --git
a/src/conf.h
b/src/conf.h
index
de74c9f
..
36a7bb8
100644
(file)
--- a/
src/conf.h
+++ b/
src/conf.h
@@
-40,7
+40,8
@@
typedef enum which_t {
tapdevice,
allowconnect,
pingtimeout,
- keyexpire
+ keyexpire,
+ vpnmask
} which_t;
typedef struct config_t {