28 lines
978 B
C
28 lines
978 B
C
/* libiptbwctl -- A userspace library for querying the bandwidth iptables module
|
|
* Originally designed for use with Gargoyle router firmware (gargoyle-router.com)
|
|
*
|
|
*
|
|
* Copyright © 2009 by Eric Bishop <eric@gargoyle-router.com>
|
|
*
|
|
* This file is free software: you may copy, redistribute 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.
|
|
*
|
|
* This file 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 <ipt_bwctl.h>
|
|
|
|
int main(void)
|
|
{
|
|
set_kernel_timezone();
|
|
return 0;
|
|
}
|