mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
license header
This commit is contained in:
parent
0ff2f220df
commit
3cc1c8127a
42 changed files with 840 additions and 0 deletions
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <psyc.h>
|
||||
#include <stdio.h>
|
||||
#include <lib.h>
|
||||
|
|
20
test/test.c
20
test/test.c
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
/**
|
||||
* test server for packet parsing & rendering
|
||||
*
|
||||
|
|
20
test/test.h
20
test/test.h
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#ifndef TEST_H
|
||||
# define TEST_H
|
||||
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <psyc.h>
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/time.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <lib.h>
|
||||
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
#include <fcntl.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <lib.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#define _GNU_SOURCE
|
||||
|
||||
#include <ctype.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <lib.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <psyc.h>
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <psyc/uniform.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <psyc.h>
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
This file is part of libpsyc.
|
||||
Copyright (C) 2011,2012 Carlo v. Loesch, Gabor X Toth, Mathias L. Baumann,
|
||||
and other contributing authors.
|
||||
|
||||
libpsyc is free software: you can redistribute it and/or modify it under the
|
||||
terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version. As a special exception, libpsyc is distributed with additional
|
||||
permissions to link libpsyc libraries with non-AGPL works.
|
||||
|
||||
libpsyc 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 Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License and
|
||||
the linking exception along with libpsyc in a COPYING file.
|
||||
*/
|
||||
|
||||
#include <psyc.h>
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue