Commit 8c4188e8 authored by Seblu's avatar Seblu
Browse files

Add GPL license to SLC

parent 0d2ddb6c
Loading
Loading
Loading
Loading

slc/trunk/COPYING

0 → 100644
+674 −0

File added.

Preview size limit exceeded, changes collapsed.

slc/trunk/README

0 → 100644
+0 −0

Empty file added.

+19 −0
Original line number Diff line number Diff line
/*
  This file is part of SLC.
  Copyright (C) 2008 Sebastien LUTTRINGER (<contact@seblu.net> )

  SLC 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.

  SLC 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 SLC; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  US
*/

#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
+19 −0
Original line number Diff line number Diff line
/*
  This file is part of SLC.
  Copyright (C) 2008 Sebastien LUTTRINGER (<contact@seblu.net> )

  SLC 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.

  SLC 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 SLC; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  US
*/

#ifndef CONNECTION_HH
# define CONNECTION_HH

+19 −0
Original line number Diff line number Diff line
/*
  This file is part of SLC.
  Copyright (C) 2008 Sebastien LUTTRINGER (<contact@seblu.net> )

  SLC 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.

  SLC 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 SLC; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  US
*/

#include "error.hh"

/*!
Loading