diff options
54 files changed, 250 insertions, 220 deletions
@@ -1,5 +1,24 @@ 2014-03-23 Artyom Poptsov <poptsov.artyom@gmail.com> + * Makefile.am, am/Makefile.am, ssh/Makefile.am, ssh/auth.c, + ssh/auth.h, ssh/auth.scm, ssh/base64.c, ssh/base64.h, + ssh/channel-func.c, ssh/channel-func.h, ssh/channel-main.c, + ssh/channel-type.c, ssh/channel-type.h, ssh/channel.scm, + ssh/common.c, ssh/common.h, ssh/error.c, ssh/error.h, + ssh/key-func.c, ssh/key-func.h, ssh/key-main.c, ssh/key-type.c, + ssh/key-type.h, ssh/key.scm, ssh/message-func.c, + ssh/message-func.h, ssh/message-main.c, ssh/message-type.c, + ssh/message-type.h, ssh/message.scm, ssh/server-func.c, + ssh/server-func.h, ssh/server-main.c, ssh/server-type.c, + ssh/server-type.h, ssh/server.scm, ssh/session-func.c, + ssh/session-func.h, ssh/session-main.c, ssh/session-type.c, + ssh/session-type.h, ssh/session.scm, ssh/threads.c, ssh/threads.h, + ssh/version.c, ssh/version.scm, tests/Makefile.am, + tests/client-server.scm, tests/server-client.scm, + tests/server.scm, tests/session.scm, tests/sssh-ssshd.scm, + configure.ac: Replace `libguile-ssh' with `Guile-SSH' in + commentaries. + * examples/ssshd.scm.in (handle-req-auth): Fix handling of password authentication. diff --git a/Makefile.am b/Makefile.am index d43743c..8932f0f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,20 +2,20 @@ ## ## Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ## -## This file is part of libguile-ssh. +## This file is part of Guile-SSH. ## -## libguile-ssh is free software: you can redistribute it and/or +## Guile-SSH is free software: you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation, either version 3 of the ## License, or (at your option) any later version. ## -## libguile-ssh is distributed in the hope that it will be useful, but +## Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +## along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. ACLOCAL_AMFLAGS = -I m4 --install diff --git a/am/Makefile.am b/am/Makefile.am index b7c6525..0f89d8d 100644 --- a/am/Makefile.am +++ b/am/Makefile.am @@ -2,20 +2,20 @@ ## ## Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ## -## This file is part of libguile-ssh. +## This file is part of Guile-SSH. ## -## libguile-ssh is free software: you can redistribute it and/or +## Guile-SSH is free software: you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation, either version 3 of the ## License, or (at your option) any later version. ## -## libguile-ssh is distributed in the hope that it will be useful, but +## Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +## along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. AUTOMAKE_OPTIONS = gnu diff --git a/configure.ac b/configure.ac index cecef3a..a2c96d4 100644 --- a/configure.ac +++ b/configure.ac @@ -5,20 +5,20 @@ dnl define(GUILE_SSH_CONFIGURE_COPYRIGHT, [[ Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> -This file is part of libguile-ssh. +This file is part of Guile-SSH. -libguile-ssh is free software: you can redistribute it and/or +Guile-SSH is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -libguile-ssh is distributed in the hope that it will be useful, but +Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. ]]) AC_INIT([Guile-SSH], [0.5.0], [poptsov.artyom@gmail.com], diff --git a/ssh/Makefile.am b/ssh/Makefile.am index dc8efc0..4fe169c 100644 --- a/ssh/Makefile.am +++ b/ssh/Makefile.am @@ -1,20 +1,19 @@ -## Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> +## Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ## -## This file is part of libguile-ssh. +## This file is part of Guile-SSH. ## -## libguile-ssh is free software: you can redistribute it and/or +## Guile-SSH is free software: you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation, either version 3 of the ## License, or (at your option) any later version. ## -## libguile-ssh is distributed in the hope that it will be useful, but +## Guile-SSH 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 libguile-ssh. If not, see -## <http://www.gnu.org/licenses/>. +## along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. include $(top_srcdir)/am/snarf include $(top_srcdir)/am/guilec @@ -2,20 +2,20 @@ * * Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> @@ -1,19 +1,19 @@ /* Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __AUTH_H__ diff --git a/ssh/auth.scm b/ssh/auth.scm index aa7e649..2a61fbd 100644 --- a/ssh/auth.scm +++ b/ssh/auth.scm @@ -2,21 +2,20 @@ ;; Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see -;; <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/ssh/base64.c b/ssh/base64.c index 20c8f09..29b2cb0 100644 --- a/ssh/base64.c +++ b/ssh/base64.c @@ -34,20 +34,20 @@ /* * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * LazyCat is free software: you can redistribute it and/or modify + * Guile-SSH is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * LazyCat is distributed in the hope that it will be useful, + * Guile-SSH 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 LazyCat. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <stdlib.h> diff --git a/ssh/base64.h b/ssh/base64.h index 874928e..98ccce4 100644 --- a/ssh/base64.h +++ b/ssh/base64.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __BASE64_H__ diff --git a/ssh/channel-func.c b/ssh/channel-func.c index 5689a02..979bc3a 100644 --- a/ssh/channel-func.c +++ b/ssh/channel-func.c @@ -2,21 +2,20 @@ * * Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see - * <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/channel-func.h b/ssh/channel-func.h index 5cd774f..82afc23 100644 --- a/ssh/channel-func.h +++ b/ssh/channel-func.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __CHANNEL_FUNC_H__ diff --git a/ssh/channel-main.c b/ssh/channel-main.c index 7241913..b6465c7 100644 --- a/ssh/channel-main.c +++ b/ssh/channel-main.c @@ -1,20 +1,20 @@ /* * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include "channel-type.h" diff --git a/ssh/channel-type.c b/ssh/channel-type.c index b1c4733..2da0bd9 100644 --- a/ssh/channel-type.c +++ b/ssh/channel-type.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/channel-type.h b/ssh/channel-type.h index 56816a2..7ad959f 100644 --- a/ssh/channel-type.h +++ b/ssh/channel-type.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __CHANNEL_TYPE_H__ diff --git a/ssh/channel.scm b/ssh/channel.scm index 0e1e7cc..0376f6f 100644 --- a/ssh/channel.scm +++ b/ssh/channel.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see +;; along with Guile-SSH. If not, see ;; <http://www.gnu.org/licenses/>. diff --git a/ssh/common.c b/ssh/common.c index ab2f92d..f0e21a5 100644 --- a/ssh/common.c +++ b/ssh/common.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/common.h b/ssh/common.h index 61a41c4..85e8ac6 100644 --- a/ssh/common.h +++ b/ssh/common.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __COMMON_H__ diff --git a/ssh/error.c b/ssh/error.c index 57fe9ae..357574e 100644 --- a/ssh/error.c +++ b/ssh/error.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * LazyCat is free software: you can redistribute it and/or modify + * Guile-SSH is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * LazyCat is distributed in the hope that it will be useful, + * Guile-SSH 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 LazyCat. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/error.h b/ssh/error.h index 6476c48..91242af 100644 --- a/ssh/error.h +++ b/ssh/error.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __GUILE_SSH_ERROR_H__ diff --git a/ssh/key-func.c b/ssh/key-func.c index 29de03d..6b1cbd5 100644 --- a/ssh/key-func.c +++ b/ssh/key-func.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/key-func.h b/ssh/key-func.h index 90dc445..557fe34 100644 --- a/ssh/key-func.h +++ b/ssh/key-func.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __KEY_FUNC_H__ diff --git a/ssh/key-main.c b/ssh/key-main.c index c62b883..1b36eb4 100644 --- a/ssh/key-main.c +++ b/ssh/key-main.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include "key-type.h" diff --git a/ssh/key-type.c b/ssh/key-type.c index e07e065..ebabc2c 100644 --- a/ssh/key-type.c +++ b/ssh/key-type.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/key-type.h b/ssh/key-type.h index 4d225cc..d5e80a5 100644 --- a/ssh/key-type.h +++ b/ssh/key-type.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __KEY_TYPE_H__ diff --git a/ssh/key.scm b/ssh/key.scm index 365e2af..e3cd2a0 100644 --- a/ssh/key.scm +++ b/ssh/key.scm @@ -2,21 +2,20 @@ ;; Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see -;; <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/ssh/message-func.c b/ssh/message-func.c index e756b6f..c85ead6 100644 --- a/ssh/message-func.c +++ b/ssh/message-func.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/message-func.h b/ssh/message-func.h index 69eca89..aee121a 100644 --- a/ssh/message-func.h +++ b/ssh/message-func.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __MESSAGE_FUNC_H__ diff --git a/ssh/message-main.c b/ssh/message-main.c index c1bb7c3..1d3609c 100644 --- a/ssh/message-main.c +++ b/ssh/message-main.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include "message-type.h" diff --git a/ssh/message-type.c b/ssh/message-type.c index 7fddc61..56c626d 100644 --- a/ssh/message-type.c +++ b/ssh/message-type.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/message-type.h b/ssh/message-type.h index 1c781b3..109f8cf 100644 --- a/ssh/message-type.h +++ b/ssh/message-type.h @@ -1,3 +1,21 @@ +/* Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> + * + * This file is part of Guile-SSH. + * + * Guile-SSH is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * Guile-SSH 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 Guile-SSH. If not, see <http://www.gnu.org/licenses/>. + */ + #ifndef __MESSAGE_TYPE_H__ #define __MESSAGE_TYPE_H__ diff --git a/ssh/message.scm b/ssh/message.scm index b5f310b..7c01e32 100644 --- a/ssh/message.scm +++ b/ssh/message.scm @@ -2,21 +2,20 @@ ;; Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see -;; <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/ssh/server-func.c b/ssh/server-func.c index 2ba6fa8..ca58824 100644 --- a/ssh/server-func.c +++ b/ssh/server-func.c @@ -1,21 +1,21 @@ /* server-func.c -- Functions for working with SSH server. * - * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> + * Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/server-func.h b/ssh/server-func.h index a104d0f..d947ffc 100644 --- a/ssh/server-func.h +++ b/ssh/server-func.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __SERVER_FUNC_H__ diff --git a/ssh/server-main.c b/ssh/server-main.c index a1b13c0..af7bebf 100644 --- a/ssh/server-main.c +++ b/ssh/server-main.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include "server-type.h" diff --git a/ssh/server-type.c b/ssh/server-type.c index 7d776da..5a816cf 100644 --- a/ssh/server-type.c +++ b/ssh/server-type.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/server-type.h b/ssh/server-type.h index 95c9897..f45b81f 100644 --- a/ssh/server-type.h +++ b/ssh/server-type.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __SERVER_TYPE_H__ diff --git a/ssh/server.scm b/ssh/server.scm index 18c1b48..4d1e848 100644 --- a/ssh/server.scm +++ b/ssh/server.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see +;; along with Guile-SSH. If not, see ;; <http://www.gnu.org/licenses/>. diff --git a/ssh/session-func.c b/ssh/session-func.c index 5b99e22..d06c7c7 100644 --- a/ssh/session-func.c +++ b/ssh/session-func.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/session-func.h b/ssh/session-func.h index 941a451..db7fc84 100644 --- a/ssh/session-func.h +++ b/ssh/session-func.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __SESSION_FUNC_H__ diff --git a/ssh/session-main.c b/ssh/session-main.c index 5a84bbe..7f143c9 100644 --- a/ssh/session-main.c +++ b/ssh/session-main.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include "session-type.h" diff --git a/ssh/session-type.c b/ssh/session-type.c index 80dd9be..71cb167 100644 --- a/ssh/session-type.c +++ b/ssh/session-type.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> diff --git a/ssh/session-type.h b/ssh/session-type.h index 5488eb9..8117577 100644 --- a/ssh/session-type.h +++ b/ssh/session-type.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __SESSION_TYPE_H__ diff --git a/ssh/session.scm b/ssh/session.scm index 9e4bc59..a3152e7 100644 --- a/ssh/session.scm +++ b/ssh/session.scm @@ -2,21 +2,20 @@ ;; Copyright (C) 2013, 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see -;; <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/ssh/threads.c b/ssh/threads.c index 5187010..0cef993 100644 --- a/ssh/threads.c +++ b/ssh/threads.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libssh/callbacks.h> diff --git a/ssh/threads.h b/ssh/threads.h index 411d78c..f553045 100644 --- a/ssh/threads.h +++ b/ssh/threads.h @@ -1,19 +1,19 @@ /* Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __THREADS_H__ diff --git a/ssh/version.c b/ssh/version.c index 5b69df7..d7023db 100644 --- a/ssh/version.c +++ b/ssh/version.c @@ -2,20 +2,20 @@ * * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> * - * This file is part of libguile-ssh + * This file is part of Guile-SSH. * - * libguile-ssh is free software: you can redistribute it and/or + * Guile-SSH is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * - * libguile-ssh is distributed in the hope that it will be useful, but + * Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. + * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. */ #include <libguile.h> @@ -29,10 +29,10 @@ SCM_DEFINE (guile_ssh_get_libssh_version, "get-libssh-version", 0, 0, 0, return scm_from_locale_string (SSH_STRINGIFY (LIBSSH_VERSION)); } -/* Get version of the libguile-ssh. */ +/* Get version of the Guile-SSH. */ SCM_DEFINE (guile_ssh_get_library_version, "get-library-version", 0, 0, 0, (), - "Get version of the libguile-ssh.") + "Get version of the Guile-SSH.") { return scm_from_locale_string (PACKAGE_VERSION); } diff --git a/ssh/version.scm b/ssh/version.scm index 2a98081..0705551 100644 --- a/ssh/version.scm +++ b/ssh/version.scm @@ -2,21 +2,20 @@ ;; Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see -;; <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. ;;; Commentary: @@ -36,7 +35,7 @@ ;; ;; For example, "0.5.2". ;; -;; `get-library-version' returns version of the libguile-ssh library +;; `get-library-version' returns version of the Guile-SSH library ;; as a string. diff --git a/tests/Makefile.am b/tests/Makefile.am index 085518e..e674dc0 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -2,20 +2,20 @@ ## ## Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ## -## This file is part of libguile-ssh. +## This file is part of Guile-SSH. ## -## libguile-ssh is free software: you can redistribute it and/or +## Guile-SSH is free software: you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation, either version 3 of the ## License, or (at your option) any later version. ## -## libguile-ssh is distributed in the hope that it will be useful, but +## Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +## along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. SCM_TESTS = \ server.scm \ diff --git a/tests/client-server.scm b/tests/client-server.scm index 93c6c3d..33e726d 100644 --- a/tests/client-server.scm +++ b/tests/client-server.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ice-9 threads) diff --git a/tests/server-client.scm b/tests/server-client.scm index e9acdca..963ac6c 100644 --- a/tests/server-client.scm +++ b/tests/server-client.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ice-9 threads) diff --git a/tests/server.scm b/tests/server.scm index 1cbfc59..a1bc7af 100644 --- a/tests/server.scm +++ b/tests/server.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ssh server)) diff --git a/tests/session.scm b/tests/session.scm index 1b73e6c..5a62649 100644 --- a/tests/session.scm +++ b/tests/session.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ssh session)) diff --git a/tests/sssh-ssshd.scm b/tests/sssh-ssshd.scm index 732874f..00bb040 100644 --- a/tests/sssh-ssshd.scm +++ b/tests/sssh-ssshd.scm @@ -2,20 +2,20 @@ ;; Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;; -;; This file is a part of libguile-ssh. +;; This file is a part of Guile-SSH. ;; -;; libguile-ssh is free software: you can redistribute it and/or +;; Guile-SSH is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; -;; libguile-ssh is distributed in the hope that it will be useful, but +;; Guile-SSH 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>. (use-modules (srfi srfi-64) (ice-9 popen) |
