comparison autocal/rvinterf.c @ 47:e86779d5445c

autocal: preparations for receiving auto stats and rfe completion
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 27 May 2017 06:46:17 +0000
parents 724e16223187
children
comparison
equal deleted inserted replaced
46:751f8d9efed0 47:e86779d5445c
161 "error: unexpected response type from rvinterf\n"); 161 "error: unexpected response type from rvinterf\n");
162 exit(ERROR_RVINTERF); 162 exit(ERROR_RVINTERF);
163 } 163 }
164 return(0); 164 return(0);
165 } 165 }
166
167 collect_extra_pkt_from_target()
168 {
169 collect_rvi_msg();
170 if (rvi_msg[0] != RVI2CLI_PKT_FROM_TARGET) {
171 fprintf(stderr, "error: unexpected message from rvinterf\n");
172 exit(ERROR_RVINTERF);
173 }
174 return(0);
175 }