aboutsummaryrefslogtreecommitdiffstats
path: root/ncpd
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>1999-07-05 21:48:27 +0000
committerFritz Elfert <felfert@to.com>1999-07-05 21:48:27 +0000
commit4d6bfb102309c91423f1e1f902d84e8820217b08 (patch)
tree71db808b259b56a39a800c083adeedee60f979e5 /ncpd
parent87482394b65e02e1c0900233a43dead4160850e2 (diff)
downloadplptools-4d6bfb102309c91423f1e1f902d84e8820217b08.tar.gz
plptools-4d6bfb102309c91423f1e1f902d84e8820217b08.tar.bz2
plptools-4d6bfb102309c91423f1e1f902d84e8820217b08.zip
Added RCS-Id's, Copyright
Diffstat (limited to 'ncpd')
-rw-r--r--ncpd/Makefile.am2
-rw-r--r--ncpd/channel.cc3
-rw-r--r--ncpd/channel.h24
-rw-r--r--ncpd/link.cc3
-rw-r--r--ncpd/link.h24
-rw-r--r--ncpd/linkchan.cc3
-rw-r--r--ncpd/linkchan.h24
-rw-r--r--ncpd/main.cc3
-rw-r--r--ncpd/mp_serial.h2
-rw-r--r--ncpd/ncp.cc3
-rw-r--r--ncpd/ncp.h24
-rw-r--r--ncpd/packet.cc3
-rw-r--r--ncpd/packet.h24
-rw-r--r--ncpd/socketchan.cc3
-rw-r--r--ncpd/socketchan.h24
15 files changed, 169 insertions, 0 deletions
diff --git a/ncpd/Makefile.am b/ncpd/Makefile.am
index b966d2a..e2e9341 100644
--- a/ncpd/Makefile.am
+++ b/ncpd/Makefile.am
@@ -1,3 +1,5 @@
+# $Id$
+#
INCLUDES=-I../lib
HERE=$(shell pwd)
diff --git a/ncpd/channel.cc b/ncpd/channel.cc
index 7374191..a75c791 100644
--- a/ncpd/channel.cc
+++ b/ncpd/channel.cc
@@ -1,7 +1,10 @@
+// $Id$
//
// PLP - An implementation of the PSION link protocol
//
// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
diff --git a/ncpd/channel.h b/ncpd/channel.h
index 4442088..a8f5225 100644
--- a/ncpd/channel.h
+++ b/ncpd/channel.h
@@ -1,3 +1,27 @@
+// $Id$
+//
+// PLP - An implementation of the PSION link protocol
+//
+// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
+//
+// This program 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 2 of the License, or
+// (at your option) any later version.
+//
+// This program 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 this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// e-mail philip.proudman@btinternet.com
+
#ifndef _channel_h_
#define _channel_h_
diff --git a/ncpd/link.cc b/ncpd/link.cc
index 94a6f97..c455324 100644
--- a/ncpd/link.cc
+++ b/ncpd/link.cc
@@ -1,7 +1,10 @@
+// $Id$
//
// PLP - An implementation of the PSION link protocol
//
// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
diff --git a/ncpd/link.h b/ncpd/link.h
index 596f6f1..9c65cd8 100644
--- a/ncpd/link.h
+++ b/ncpd/link.h
@@ -1,3 +1,27 @@
+// $Id$
+//
+// PLP - An implementation of the PSION link protocol
+//
+// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
+//
+// This program 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 2 of the License, or
+// (at your option) any later version.
+//
+// This program 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 this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// e-mail philip.proudman@btinternet.com
+
#ifndef _link_h_
#define _link_h_
diff --git a/ncpd/linkchan.cc b/ncpd/linkchan.cc
index 2f9a066..e4891c1 100644
--- a/ncpd/linkchan.cc
+++ b/ncpd/linkchan.cc
@@ -1,7 +1,10 @@
+// $Id$
//
// PLP - An implementation of the PSION link protocol
//
// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
diff --git a/ncpd/linkchan.h b/ncpd/linkchan.h
index db36f27..2e2f7b9 100644
--- a/ncpd/linkchan.h
+++ b/ncpd/linkchan.h
@@ -1,3 +1,27 @@
+// $Id$
+//
+// PLP - An implementation of the PSION link protocol
+//
+// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
+//
+// This program 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 2 of the License, or
+// (at your option) any later version.
+//
+// This program 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 this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// e-mail philip.proudman@btinternet.com
+
#ifndef _linkchan_h_
#define _linkchan_h_
diff --git a/ncpd/main.cc b/ncpd/main.cc
index e4abb00..101d7aa 100644
--- a/ncpd/main.cc
+++ b/ncpd/main.cc
@@ -1,7 +1,10 @@
+// $Id$
//
// PLP - An implementation of the PSION link protocol
//
// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
diff --git a/ncpd/mp_serial.h b/ncpd/mp_serial.h
index 4f7835a..0bef3e5 100644
--- a/ncpd/mp_serial.h
+++ b/ncpd/mp_serial.h
@@ -1,3 +1,5 @@
+/* $Id$
+ */
#ifndef _mp_serial_h
#define _mp_serial_h
diff --git a/ncpd/ncp.cc b/ncpd/ncp.cc
index 90b188b..b13ba62 100644
--- a/ncpd/ncp.cc
+++ b/ncpd/ncp.cc
@@ -1,7 +1,10 @@
+// $Id$
//
// PLP - An implementation of the PSION link protocol
//
// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
diff --git a/ncpd/ncp.h b/ncpd/ncp.h
index 0f0525d..f24edc6 100644
--- a/ncpd/ncp.h
+++ b/ncpd/ncp.h
@@ -1,3 +1,27 @@
+// $Id$
+//
+// PLP - An implementation of the PSION link protocol
+//
+// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
+//
+// This program 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 2 of the License, or
+// (at your option) any later version.
+//
+// This program 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 this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// e-mail philip.proudman@btinternet.com
+
#ifndef _ncp_h_
#define _ncp_h_
diff --git a/ncpd/packet.cc b/ncpd/packet.cc
index 9009f86..8099bb9 100644
--- a/ncpd/packet.cc
+++ b/ncpd/packet.cc
@@ -1,7 +1,10 @@
+// $Id$
//
// PLP - An implementation of the PSION link protocol
//
// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
diff --git a/ncpd/packet.h b/ncpd/packet.h
index 8348ba7..77ca4e9 100644
--- a/ncpd/packet.h
+++ b/ncpd/packet.h
@@ -1,3 +1,27 @@
+// $Id$
+//
+// PLP - An implementation of the PSION link protocol
+//
+// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
+//
+// This program 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 2 of the License, or
+// (at your option) any later version.
+//
+// This program 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 this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// e-mail philip.proudman@btinternet.com
+
#ifndef _packet_h
#define _packet_h
diff --git a/ncpd/socketchan.cc b/ncpd/socketchan.cc
index 72ee298..d78d3b6 100644
--- a/ncpd/socketchan.cc
+++ b/ncpd/socketchan.cc
@@ -1,7 +1,10 @@
+// $Id$
//
// PLP - An implementation of the PSION link protocol
//
// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
diff --git a/ncpd/socketchan.h b/ncpd/socketchan.h
index 0911c0c..e352b36 100644
--- a/ncpd/socketchan.h
+++ b/ncpd/socketchan.h
@@ -1,3 +1,27 @@
+// $Id$
+//
+// PLP - An implementation of the PSION link protocol
+//
+// Copyright (C) 1999 Philip Proudman
+// Modifications for plptools:
+// Copyright (C) 1999 Fritz Elfert <felfert@to.com>
+//
+// This program 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 2 of the License, or
+// (at your option) any later version.
+//
+// This program 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 this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// e-mail philip.proudman@btinternet.com
+
#ifndef _socketchan_h_
#define _socketchan_h_