summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-02-04 17:29:45 +0000
committerChristian Pointner <equinox@anytun.org>2009-02-04 17:29:45 +0000
commit0af4167c00c87bfd97256349dade3f0970dec091 (patch)
tree81a3cd001fefb2ef89c95d40a2b815a475d09ad1
parentadded --target option to configure script (diff)
cleaned file header
-rw-r--r--doc/Makefile14
-rw-r--r--src/Makefile14
-rw-r--r--src/auth_algo.c14
-rw-r--r--src/auth_algo.h14
-rw-r--r--src/bsd/tun.c14
-rw-r--r--src/cipher.c14
-rw-r--r--src/cipher.h14
-rwxr-xr-xsrc/configure14
-rw-r--r--src/daemon.h14
-rw-r--r--src/datatypes.h14
-rw-r--r--src/encrypted_packet.c14
-rw-r--r--src/encrypted_packet.h14
-rw-r--r--src/key_derivation.c14
-rw-r--r--src/key_derivation.h14
-rw-r--r--src/linux/tun.c14
-rw-r--r--src/log.c14
-rw-r--r--src/log.h14
-rw-r--r--src/options.c14
-rw-r--r--src/options.h14
-rw-r--r--src/plain_packet.c14
-rw-r--r--src/plain_packet.h14
-rw-r--r--src/seq_window.c14
-rw-r--r--src/seq_window.h14
-rw-r--r--src/signal.c14
-rw-r--r--src/signal.h14
-rw-r--r--src/sysexec.h14
-rw-r--r--src/tun.h14
-rw-r--r--src/tun_helper.h14
-rw-r--r--src/uanytun.c14
-rw-r--r--src/udp.c14
-rw-r--r--src/udp.h14
31 files changed, 217 insertions, 217 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 3e24531..f49deda 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,8 +1,8 @@
##
-## ľAnytun
+## uAnytun
##
-## ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
-## featured implementation ľAnytun has no support for multiple connections
+## uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+## featured implementation uAnytun has no support for multiple connections
## or synchronisation. It is a small single threaded implementation intended
## to act as a client on small platforms.
## The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
##
## Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
##
-## This file is part of ľAnytun.
+## This file is part of uAnytun.
##
-## ľAnytun is free software: you can redistribute it and/or modify
+## uAnytun is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License version 3 as
## published by the Free Software Foundation.
##
-## ľAnytun is distributed in the hope that it will be useful,
+## uAnytun is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
-## along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+## along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
##
all: manpage
diff --git a/src/Makefile b/src/Makefile
index 6f1df77..2cc09b2 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,8 +1,8 @@
##
-## ľAnytun
+## uAnytun
##
-## ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
-## featured implementation ľAnytun has no support for multiple connections
+## uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+## featured implementation uAnytun has no support for multiple connections
## or synchronisation. It is a small single threaded implementation intended
## to act as a client on small platforms.
## The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
##
## Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
##
-## This file is part of ľAnytun.
+## This file is part of uAnytun.
##
-## ľAnytun is free software: you can redistribute it and/or modify
+## uAnytun is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License version 3 as
## published by the Free Software Foundation.
##
-## ľAnytun is distributed in the hope that it will be useful,
+## uAnytun is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
-## along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+## along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
##
include include.mk
diff --git a/src/auth_algo.c b/src/auth_algo.c
index 1827d25..299b86b 100644
--- a/src/auth_algo.c
+++ b/src/auth_algo.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/auth_algo.h b/src/auth_algo.h
index 1575dc1..7202b47 100644
--- a/src/auth_algo.h
+++ b/src/auth_algo.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _AUTH_ALGO_H_
diff --git a/src/bsd/tun.c b/src/bsd/tun.c
index 2c07018..bc10d5b 100644
--- a/src/bsd/tun.c
+++ b/src/bsd/tun.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/cipher.c b/src/cipher.c
index 01125d4..58467cb 100644
--- a/src/cipher.c
+++ b/src/cipher.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/cipher.h b/src/cipher.h
index 555b97a..75e7506 100644
--- a/src/cipher.h
+++ b/src/cipher.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _CIPHER_H_
diff --git a/src/configure b/src/configure
index 3872fce..e3cb2a8 100755
--- a/src/configure
+++ b/src/configure
@@ -1,9 +1,9 @@
#!/bin/sh
#
-# ľAnytun
+# uAnytun
#
-# ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
-# featured implementation ľAnytun has no support for multiple connections
+# uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+# featured implementation uAnytun has no support for multiple connections
# or synchronisation. It is a small single threaded implementation intended
# to act as a client on small platforms.
# The secure anycast tunneling protocol (satp) defines a protocol used
@@ -18,19 +18,19 @@
#
# Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
#
-# This file is part of ľAnytun.
+# This file is part of uAnytun.
#
-# ľAnytun is free software: you can redistribute it and/or modify
+# uAnytun is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
-# ľAnytun is distributed in the hope that it will be useful,
+# uAnytun is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+# along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
#
TARGET=`uname -s`
diff --git a/src/daemon.h b/src/daemon.h
index 4ebc8cd..8959c7e 100644
--- a/src/daemon.h
+++ b/src/daemon.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _DAEMON_H_
diff --git a/src/datatypes.h b/src/datatypes.h
index e88001f..5cddbda 100644
--- a/src/datatypes.h
+++ b/src/datatypes.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _DATATYPES_H_
diff --git a/src/encrypted_packet.c b/src/encrypted_packet.c
index 2cc4e5f..151683f 100644
--- a/src/encrypted_packet.c
+++ b/src/encrypted_packet.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/encrypted_packet.h b/src/encrypted_packet.h
index 9061f3d..2e6c1b7 100644
--- a/src/encrypted_packet.h
+++ b/src/encrypted_packet.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _ENCRYPTED_PACKET_H_
diff --git a/src/key_derivation.c b/src/key_derivation.c
index a4b1c9f..6ceabb9 100644
--- a/src/key_derivation.c
+++ b/src/key_derivation.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/key_derivation.h b/src/key_derivation.h
index 9bdb8f3..d78a93e 100644
--- a/src/key_derivation.h
+++ b/src/key_derivation.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _KEY_DERIVATION_H_
diff --git a/src/linux/tun.c b/src/linux/tun.c
index 1d21eda..385da8d 100644
--- a/src/linux/tun.c
+++ b/src/linux/tun.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
diff --git a/src/log.c b/src/log.c
index 2786cbb..77e998f 100644
--- a/src/log.c
+++ b/src/log.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/log.h b/src/log.h
index 3b2196d..99f4a60 100644
--- a/src/log.h
+++ b/src/log.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _LOG_H_
diff --git a/src/options.c b/src/options.c
index 887cc4b..0dbaac3 100644
--- a/src/options.c
+++ b/src/options.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/options.h b/src/options.h
index 6108d41..bbb010c 100644
--- a/src/options.h
+++ b/src/options.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _OPTIONS_H_
diff --git a/src/plain_packet.c b/src/plain_packet.c
index 5675c63..469f412 100644
--- a/src/plain_packet.c
+++ b/src/plain_packet.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/plain_packet.h b/src/plain_packet.h
index c35e1ef..ed42893 100644
--- a/src/plain_packet.h
+++ b/src/plain_packet.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PLAIN_PACKET_H_
diff --git a/src/seq_window.c b/src/seq_window.c
index d53755e..6c49d2f 100644
--- a/src/seq_window.c
+++ b/src/seq_window.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/seq_window.h b/src/seq_window.h
index 7855594..2191d53 100644
--- a/src/seq_window.h
+++ b/src/seq_window.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _SEQ_WINDOW_H_
diff --git a/src/signal.c b/src/signal.c
index 122577d..01ec5d5 100644
--- a/src/signal.c
+++ b/src/signal.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/signal.h b/src/signal.h
index 328f849..70dc1e6 100644
--- a/src/signal.h
+++ b/src/signal.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _SIGNAL_H_
diff --git a/src/sysexec.h b/src/sysexec.h
index 04226a1..5021392 100644
--- a/src/sysexec.h
+++ b/src/sysexec.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _SYSEXEC_H_
diff --git a/src/tun.h b/src/tun.h
index 99f41f8..6e7c302 100644
--- a/src/tun.h
+++ b/src/tun.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _TUN_H_
diff --git a/src/tun_helper.h b/src/tun_helper.h
index db5fd6a..396d902 100644
--- a/src/tun_helper.h
+++ b/src/tun_helper.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _TUN_HELPER_H_
diff --git a/src/uanytun.c b/src/uanytun.c
index 42b082a..1ec6ffb 100644
--- a/src/uanytun.c
+++ b/src/uanytun.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/udp.c b/src/udp.c
index 4d59509..35b4c86 100644
--- a/src/udp.c
+++ b/src/udp.c
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#include "datatypes.h"
diff --git a/src/udp.h b/src/udp.h
index b033c5e..adc191f 100644
--- a/src/udp.h
+++ b/src/udp.h
@@ -1,8 +1,8 @@
/*
- * ľAnytun
+ * uAnytun
*
- * ľAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
- * featured implementation ľAnytun has no support for multiple connections
+ * uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
+ * featured implementation uAnytun has no support for multiple connections
* or synchronisation. It is a small single threaded implementation intended
* to act as a client on small platforms.
* The secure anycast tunneling protocol (satp) defines a protocol used
@@ -17,19 +17,19 @@
*
* Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
*
- * This file is part of ľAnytun.
+ * This file is part of uAnytun.
*
- * ľAnytun is free software: you can redistribute it and/or modify
+ * uAnytun is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
- * ľAnytun is distributed in the hope that it will be useful,
+ * uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with ľAnytun. If not, see <http://www.gnu.org/licenses/>.
+ * along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _UDP_H_