Skip to content

Commit

Permalink
Adding lost files
Browse files Browse the repository at this point in the history
  • Loading branch information
stealth committed Jun 28, 2013
1 parent 4662dca commit b007f9f
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
32 changes: 32 additions & 0 deletions config.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* This file is part of fraud-bridge.
*
* (C) 2013 by Sebastian Krahmer, sebastian [dot] krahmer [at] gmail [dot] com
*
* fraud-bridge 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.
*
* fraud-bridge 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 fraud-bridge. If not, see <http://www.gnu.org/licenses/>.
*/

#include <string>
#include "config.h"

namespace config {
bool verbose = 0;
uint32_t useconds = 5000;
uint16_t edns0 = 1024;

uint32_t max_tx = 1<<19;

std::string peer1 = "1.2.3.4", peer2 = "1.2.3.5";
};

35 changes: 35 additions & 0 deletions config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* This file is part of fraud-bridge.
*
* (C) 2013 by Sebastian Krahmer, sebastian [dot] krahmer [at] gmail [dot] com
*
* fraud-bridge 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.
*
* fraud-bridge 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 fraud-bridge. If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef __config_h__
#define __config_h__

#include <stdint.h>
#include <string>

namespace config {

extern bool verbose;
extern uint32_t useconds;
extern uint16_t edns0;
extern uint32_t max_tx;
extern std::string peer1, peer2;
};

#endif

0 comments on commit b007f9f

Please sign in to comment.