12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- 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/>.
- * */
- /*
- * configparser.H
- *
- * Created on: Mar 2, 2013
- * Author: xaxaxa
- */
- #ifndef CONFIGPARSER_H_
- #define CONFIGPARSER_H_
- #include "socketd_internal.H"
- namespace socketd
- {
- class ParserException: public std::exception
- {
- public:
- string message;
- int32_t number;
- ParserException();
- ParserException(int32_t number);
- ParserException(string message, int32_t number = 0);
- ~ParserException() throw ();
- const char* what() const throw ();
- };
- void loadConfig(const char* conf, int len, socketd& sd);
- void reloadConfig(const char* conf, int len, socketd& sd);
- }
- #endif /* CONFIGPARSER_H_ */
|