[Vtun-Commit] CVS: The file 'vtun/main.c' has been modified.
Status: Inactive
Brought to you by:
mtbishop
|
From: Bishop <mtbishop> - 2009-03-29 09:55:37
|
The following file was modified in vtun:
Name Old version New version Comment
---- ----------- ----------- -------
main.c 1.9.2.2.4.1 1.9.2.2.4.2
The accompanying log:
- added some comments around the connection of the delayed UDP
- moved the is_connected variable to the head of main.c so that it
can be more easily seen and corrected.
- added some TODO spam
The diff of the modified file(s):
--- main.c 3 Mar 2009 04:15:24 -0000 1.9.2.2.4.1
+++ main.c 29 Mar 2009 09:55:31 -0000 1.9.2.2.4.2
@@ -50,6 +50,9 @@
extern int optind,opterr,optopt;
extern char *optarg;
+/* for the NATHack bit. Is our UDP session connected? */
+int is_rmt_fd_connected=1;
+
int main(int argc, char *argv[], char *env[])
{
int svr, daemon, sock, dofork, fd, opt;
|