Changes in protocols/yahoo/yahoo_fn.h [c36f73b:b7d3cc34]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/yahoo_fn.h
rc36f73b rb7d3cc34 19 19 */ 20 20 21 #define IDENT 1 22 #define XOR 2 23 #define MULADD 3 24 #define LOOKUP 4 25 #define BITFLD 5 21 #define IDENT 1 /* identify function */ 22 #define XOR 2 /* xor with arg1 */ 23 #define MULADD 3 /* multipy by arg1 then add arg2 */ 24 #define LOOKUP 4 /* lookup each byte in the table pointed to by arg1 */ 25 #define BITFLD 5 /* reorder bits according to table pointed to by arg1 */ 26 26 27 struct yahoo_fn { 28 int type; 27 struct yahoo_fn 28 { 29 int type; 29 30 long arg1, arg2; 30 31 }; 31 32 32 int yahoo_xfrm( int table, int depth, int seed);33 int yahoo_xfrm( int table, int depth, int seed );
Note: See TracChangeset
for help on using the changeset viewer.