Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
P
PPSi
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
45
Issues
45
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
image/svg+xml
Discourse
Discourse
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Projects
PPSi
Commits
9d478441
Commit
9d478441
authored
Jan 10, 2012
by
Aurelio Colosimo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
authors and license now specified at top of each file
a general notice is also put in AUTHORS file
parent
184445d4
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
94 additions
and
22 deletions
+94
-22
AUTHORS
AUTHORS
+36
-0
posix-timer.c
arch-gnu-linux/posix-timer.c
+1
-1
constants.h
include/pptp/constants.h
+5
-0
ieee1588_types.h
include/pptp/ieee1588_types.h
+3
-2
pptp.h
include/pptp/pptp.h
+2
-1
ext-wr.c
proto-ext-whiterabbit/ext-wr.c
+2
-1
arith.c
proto-standard/arith.c
+2
-1
bmc.c
proto-standard/bmc.c
+3
-1
common-fun.c
proto-standard/common-fun.c
+3
-1
common-fun.h
proto-standard/common-fun.h
+2
-1
fsm-table.c
proto-standard/fsm-table.c
+2
-1
msg.c
proto-standard/msg.c
+2
-1
open-close.c
proto-standard/open-close.c
+2
-1
servo.c
proto-standard/servo.c
+2
-1
state-disabled.c
proto-standard/state-disabled.c
+3
-1
state-faulty.c
proto-standard/state-faulty.c
+3
-1
state-initializing.c
proto-standard/state-initializing.c
+3
-1
state-listening.c
proto-standard/state-listening.c
+3
-1
state-master.c
proto-standard/state-master.c
+3
-1
state-passive.c
proto-standard/state-passive.c
+3
-1
state-pre-master.c
proto-standard/state-pre-master.c
+3
-1
state-slave.c
proto-standard/state-slave.c
+3
-1
state-uncalibrated.c
proto-standard/state-uncalibrated.c
+3
-1
No files found.
AUTHORS
0 → 100644
View file @
9d478441
The authors (or people who mostly developed the code) are specified inside each
file which compose the PPTP source.
Where no otherways specified, the authors are:
Alessandro Rubini for CERN, 2011 -- GNU LGPL v2.1 or later
Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
Many source files (mostly those regarding the algorithm itself) are based on the
PTPd project, v.2.1.0 (see http://ptpd.sourceforge.net/), with was used
according to the following copyright notice:
--- COPYRIGHT of PTPd v. 2.1.0 ---
The following copyright notice applies to all files which compose the
PTPd. This notice applies as if the text was explicitly included each
file.
Copyright (c) 2009-2010 George V. Neville-Neil, Steven Kreuzer,
Gael Mace, Alexandre Van Kempen
Copyright (c) 2005-2008 Kendall Correll, Aidan Williams
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
---
arch-gnu-linux/posix-timer.c
View file @
9d478441
/*
*
FIXME head
er
*
Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or lat
er
*/
/* Timer interface for GNU/Linux (and most likely other posix systems */
...
...
include/pptp/constants.h
View file @
9d478441
/*
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#ifndef __PTP_CONSTANTS_H__
#define __PTP_CONSTANTS_H__
...
...
include/pptp/ieee1588_types.h
View file @
9d478441
/*
* FIXME header
* Structs defined in IEEE Std 1588-2008
* Aurelio Colosimo for CERN, 2011 -- public domain
*/
/* Structs defined in IEEE Std 1588-2008 */
#ifndef __PPTP_IEEE_1588_TYPES_H__
#define __PPTP_IEEE_1588_TYPES_H__
...
...
include/pptp/pptp.h
View file @
9d478441
/*
*
FIXME: head
er
*
Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or lat
er
*/
#ifndef __PTP_PROTO_H__
#define __PTP_PROTO_H__
...
...
proto-ext-whiterabbit/ext-wr.c
View file @
9d478441
/*
*
FIXME: head
er
*
Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or lat
er
*/
#include <pptp/pptp.h>
/* This is a placeholder for white rabbit extension. */
...
...
proto-standard/arith.c
View file @
9d478441
/*
* FIXME header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <limits.h>
...
...
proto-standard/bmc.c
View file @
9d478441
/*
* FIXME header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
#include <pptp/diag.h>
...
...
proto-standard/common-fun.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
#include <pptp/diag.h>
#include "common-fun.h"
...
...
proto-standard/common-fun.h
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
...
...
proto-standard/fsm-table.c
View file @
9d478441
/*
*
FIXME: head
er
*
Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or lat
er
*/
#include <pptp/pptp.h>
/*
...
...
proto-standard/msg.c
View file @
9d478441
/*
* FIXME header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
...
...
proto-standard/open-close.c
View file @
9d478441
/*
* A
lessandro Rubini for CERN, 2011 -- public domain
* A
urelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
*/
#include <pptp/pptp.h>
/*
...
...
proto-standard/servo.c
View file @
9d478441
/*
* FIXME header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
...
...
proto-standard/state-disabled.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
int
pp_disabled
(
struct
pp_instance
*
ppi
,
unsigned
char
*
pkt
,
int
plen
)
...
...
proto-standard/state-faulty.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
#include <pptp/diag.h>
...
...
proto-standard/state-initializing.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
#include <pptp/diag.h>
...
...
proto-standard/state-listening.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
#include "common-fun.h"
...
...
proto-standard/state-master.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
#include <pptp/diag.h>
#include "common-fun.h"
...
...
proto-standard/state-passive.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
#include "common-fun.h"
...
...
proto-standard/state-pre-master.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
int
pp_pre_master
(
struct
pp_instance
*
ppi
,
unsigned
char
*
pkt
,
int
plen
)
...
...
proto-standard/state-slave.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
#include <pptp/diag.h>
#include "common-fun.h"
...
...
proto-standard/state-uncalibrated.c
View file @
9d478441
/*
* FIXME: header
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
*/
#include <pptp/pptp.h>
#include "common-fun.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment