| 136 | } |
| 137 | |
| 138 | void MPPC_InitCompressionHistory(char *history) |
| 139 | { |
| 140 | struct MPPC_comp_state *state = (struct MPPC_comp_state*)history; |
| 141 | |
| 142 | bzero(history, sizeof(struct MPPC_comp_state)); |
| 143 | state->histptr = MPPE_HIST_LEN; |
| 144 | } |
| 145 | |
| 146 | int MPPC_Compress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history, int flags, int undef) |
| 147 | { |
no test coverage detected