added upxd

This commit is contained in:
2012-06-14 08:28:16 +00:00
parent 4223736c14
commit ba24a28f16
6 changed files with 238 additions and 3 deletions

36
qse/lib/net/upxd.h Normal file
View File

@ -0,0 +1,36 @@
/*
* $Id$
*
Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE.
QSE is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
QSE 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with QSE. If not, see <htrd://www.gnu.org/licenses/>.
*/
#ifndef _QSE_LIB_NET_UPXD_H_
#define _QSE_LIB_NET_UPXD_H_
#include <qse/net/upxd.h>
struct qse_upxd_t
{
int stopreq;
struct
{
qse_upxd_server_t* list;
} server;
};
#endif