Skip to content

Commit

Permalink
zurl is gpl, include license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Karneges committed Sep 25, 2012
1 parent fb195f0 commit d27fb48
Show file tree
Hide file tree
Showing 20 changed files with 981 additions and 1 deletion.
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions src/app.cpp
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include "app.h" #include "app.h"


#include <stdio.h> #include <stdio.h>
Expand Down
17 changes: 17 additions & 0 deletions src/app.h
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef APP_H #ifndef APP_H
#define APP_H #define APP_H


Expand Down
17 changes: 17 additions & 0 deletions src/appconfig.h
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef APPCONFIG_H #ifndef APPCONFIG_H
#define APPCONFIG_H #define APPCONFIG_H


Expand Down
17 changes: 17 additions & 0 deletions src/httpheaders.cpp
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include "httpheaders.h" #include "httpheaders.h"


bool HttpHeaders::contains(const QByteArray &key) const bool HttpHeaders::contains(const QByteArray &key) const
Expand Down
17 changes: 17 additions & 0 deletions src/httpheaders.h
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef HTTPHEADERS_H #ifndef HTTPHEADERS_H
#define HTTPHEADERS_H #define HTTPHEADERS_H


Expand Down
17 changes: 17 additions & 0 deletions src/httprequest.cpp
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include "httprequest.h" #include "httprequest.h"


#include <stdio.h> #include <stdio.h>
Expand Down
17 changes: 17 additions & 0 deletions src/httprequest.h
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef HTTPREQUEST_H #ifndef HTTPREQUEST_H
#define HTTPREQUEST_H #define HTTPREQUEST_H


Expand Down
17 changes: 17 additions & 0 deletions src/log.cpp
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include "log.h" #include "log.h"


#include <stdio.h> #include <stdio.h>
Expand Down
17 changes: 17 additions & 0 deletions src/log.h
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef LOG_H #ifndef LOG_H
#define LOG_H #define LOG_H


Expand Down
17 changes: 17 additions & 0 deletions src/main.cpp
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include <QCoreApplication> #include <QCoreApplication>
#include <QTimer> #include <QTimer>
#include <QtCrypto> #include <QtCrypto>
Expand Down
2 changes: 1 addition & 1 deletion src/qzmq
17 changes: 17 additions & 0 deletions src/tnetstring.cpp
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include "tnetstring.h" #include "tnetstring.h"


#include <assert.h> #include <assert.h>
Expand Down
17 changes: 17 additions & 0 deletions src/tnetstring.h
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef TNETSTRING_H #ifndef TNETSTRING_H
#define TNETSTRING_H #define TNETSTRING_H


Expand Down
17 changes: 17 additions & 0 deletions src/worker.cpp
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include "worker.h" #include "worker.h"


#include <assert.h> #include <assert.h>
Expand Down
17 changes: 17 additions & 0 deletions src/worker.h
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef WORKER_H #ifndef WORKER_H
#define WORKER_H #define WORKER_H


Expand Down
17 changes: 17 additions & 0 deletions src/zurlrequestpacket.cpp
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include "zurlrequestpacket.h" #include "zurlrequestpacket.h"


#include "tnetstring.h" #include "tnetstring.h"
Expand Down
17 changes: 17 additions & 0 deletions src/zurlrequestpacket.h
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef ZURLREQUESTPACKET_H #ifndef ZURLREQUESTPACKET_H
#define ZURLREQUESTPACKET_H #define ZURLREQUESTPACKET_H


Expand Down
17 changes: 17 additions & 0 deletions src/zurlresponsepacket.cpp
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include "zurlresponsepacket.h" #include "zurlresponsepacket.h"


ZurlResponsePacket::ZurlResponsePacket() : ZurlResponsePacket::ZurlResponsePacket() :
Expand Down
17 changes: 17 additions & 0 deletions src/zurlresponsepacket.h
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2012 Fan Out Networks, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef ZURLRESPONSEPACKET_H #ifndef ZURLRESPONSEPACKET_H
#define ZURLRESPONSEPACKET_H #define ZURLRESPONSEPACKET_H


Expand Down

0 comments on commit d27fb48

Please sign in to comment.