case_www.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef CASE_WWW_H
00030 #define CASE_WWW_H
00031
00032
00033 #define CATE_CASE \
00034 switch(LOWER_DWORD(val)) { \
00035 case _cate_: \
00036 hdr->type = HDR_WWWAUTH_T; \
00037 p += 4; \
00038 goto dc_end; \
00039 }
00040
00041
00042 #define ENTI_CASE \
00043 switch(LOWER_DWORD(val)) { \
00044 case _enti_: \
00045 p += 4; \
00046 val = READ(p); \
00047 CATE_CASE; \
00048 goto other; \
00049 }
00050
00051
00052 #define WWW_AUTH_CASE \
00053 switch(LOWER_DWORD(val)) { \
00054 case _auth_: \
00055 p += 4; \
00056 val = READ(p); \
00057 ENTI_CASE; \
00058 goto other; \
00059 }
00060
00061
00062 #define www_CASE \
00063 p += 4; \
00064 val = READ(p); \
00065 WWW_AUTH_CASE; \
00066 goto other;
00067
00068
00069 #endif