summaryrefslogtreecommitdiff
path: root/glob.h
diff options
context:
space:
mode:
Diffstat (limited to 'glob.h')
-rwxr-xr-x[-rw-r--r--]glob.h33
1 files changed, 14 insertions, 19 deletions
diff --git a/glob.h b/glob.h
index 9287c38..15fc7ba 100644..100755
--- a/glob.h
+++ b/glob.h
@@ -21,15 +21,10 @@
// max length of a line read from a socket or a file ( config-file, html-template ).
#define READBUF 1024
-// definition for verbosity level 0 ( normal outputs ). see vmsg.h for custumizing all
+// definition for verbosity level 0 ( normal outputs ). see vmsg.h for custumizing all
// the messages. this messages will only printed out by the master thread.
#define VERBOSE
-// Defines the amount of newlines which have to send to the client's
-// chat stream the first log-in. ( prevents white screen because of buffers
-// or proxies ).
-#define PUSHSTR 1000
-
//////////////////////////////////////////////////////////////////////////////////////////
// DO NOT CHANGE ANYTHING BEHIND THIS LINE!
@@ -39,16 +34,16 @@ using namespace std;
// internal rang descriptors ( their external names may be specified different )
enum rang
-{
- CODER , // programmer.
- ADMIN , // administrator.
- MAGIC , // super user with special privileges.
- SUPER , // temporary super user.
- BASIC , // normal user without special privileges.
- GUEST , // guest user, has almost no privileges.
- RESTR , // a very restrivted user.
- OUTBN // banned out of the system.
-};
+{
+ CODER , // programmer.
+ ADMIN , // administrator.
+ MAGIC , // super user with special privileges.
+ SUPER , // temporary super user.
+ BASIC , // normal user without special privileges.
+ GUEST , // guest user, has almost no privileges.
+ RESTR , // a very restrivted user.
+ OUTBN // banned out of the system.
+};
// some custom typedefs for datatypes which are needed often.
typedef map<string, string> map_string;
@@ -56,13 +51,13 @@ typedef int function( void *v_arg );
struct container
{
- void* elem[3];
+ void* elem[3];
};
struct dynmod
{
- function *the_func ;
- void *the_module;
+ function *the_func ;
+ void *the_module;
};
#endif