Changes in protocols/yahoo/yahoo_fn.h [b7d3cc34:c36f73b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/yahoo_fn.h
rb7d3cc34 rc36f73b 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 { 29 int type; 27 struct yahoo_fn { 28 int type; 30 29 long arg1, arg2; 31 30 }; 32 31 33 int yahoo_xfrm( int table, int depth, int seed);32 int yahoo_xfrm(int table, int depth, int seed);
Note: See TracChangeset
for help on using the changeset viewer.