-/*
- * Macros to access reply info
- */
-
-/* get the entire return value */
-#define rp_gval(val) ((signed char) (val))
-
-
-/*
- * The next three give the field's bits, within the whole value
- */
-
-/* get the basic part of return value */
-#define rp_gbval(val) (rp_gval (val) & RP_BVAL)
-
-/* get the domain part of value */
-#define rp_gcval(val) (rp_gval (val) & RP_CVAL)
-
-/* get the specific part of value */
-#define rp_gsval(val) (rp_gval (val) & RP_SVAL)
-
-
-/*
- * The next three give the numeric value withing the field
- */
-
-/* get the basic part right-shifted */
-#define rp_gbbit(val) ((rp_gval (val) >> 6) & 03)
-
-/* get the domain part right-shifted */
-#define rp_gcbit(val) ((rp_gval (val) >> 3) & 07)
-
-/* get the specific part right-shifted */
-#define rp_gsbit(val) (rp_gval (val) & 07)
-
-