X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fcitadel.h;h=7dd4b09553090978d513209cab5b4f187ed379a9;hb=2cab4fe797bfb280124292ed9889d87b37c62770;hp=574dd7975a7188640143387998bc60b5c110a798;hpb=f931baf148c9870401131c88d594cd7e26133a15;p=citadel.git diff --git a/citadel/citadel.h b/citadel/citadel.h index 574dd7975..7dd4b0955 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -251,4 +251,26 @@ struct floor { #define AIDEROOM "Aide" +/* + * This structure is used to hold all of the fields of a message + * during conversion, processing, or whatever. + */ +struct minfo { + char A[512]; + char B[512]; + char C[512]; + char D[512]; + char E[512]; + char G[512]; + char H[512]; + long I; + char N[512]; + char O[512]; + char P[512]; + char R[512]; + char S[512]; + long T; + char U[512]; + char nexthop[512]; + };