diff options
-rw-r--r-- | rfc4251.C | 24 | ||||
-rw-r--r-- | rfc4251.h | 2 | ||||
-rw-r--r-- | ssh-agent-filter.C | 2 |
3 files changed, 26 insertions, 2 deletions
@@ -1,3 +1,27 @@ +/* + * rfc4251.C -- support for name-list type from RFC 4251, section 5 + * + * These are the conversions between an rfc4251string containing a name-list + * and vector<string>. + * + * Copyright (C) 2013 Timo Weingärtner <timo@tiwe.de> + * + * This file is part of ssh-agent-filter. + * + * ssh-agent-filter 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. + * + * ssh-agent-filter 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 ssh-agent-filter. If not, see <http://www.gnu.org/licenses/>. + */ + #include "rfc4251.h" rfc4251string::rfc4251string (std::vector<std::string> const & v) { @@ -10,7 +10,7 @@ * those structs contain the objects in their RFC 4251 representation, * conversions are provided via constructors and cast operators * - * Copyright (C) 2013 Timo Weingärtner <timo@tiwe.de> + * Copyright (C) 2013-2014 Timo Weingärtner <timo@tiwe.de> * * This file is part of ssh-agent-filter. * diff --git a/ssh-agent-filter.C b/ssh-agent-filter.C index 7ac2687..faa31f9 100644 --- a/ssh-agent-filter.C +++ b/ssh-agent-filter.C @@ -1,7 +1,7 @@ /* * ssh-agent-filter.C -- filtering proxy for ssh-agent meant to be forwarded to untrusted servers * - * Copyright (C) 2013 Timo Weingärtner <timo@tiwe.de> + * Copyright (C) 2013-2014 Timo Weingärtner <timo@tiwe.de> * * This file is part of ssh-agent-filter. * |