Lines Matching defs:theirs
270 struct x25_facilities theirs;
273 memset(&theirs, 0, sizeof(theirs));
277 len = x25_parse_facilities(skb, &theirs, dte, &x25->vc_facil_mask);
284 if ((theirs.reverse & 0x01 ) && (ours->reverse & 0x01)) {
289 new->reverse = theirs.reverse;
291 if (theirs.throughput) {
292 int theirs_in = theirs.throughput & 0x0f;
293 int theirs_out = theirs.throughput & 0xf0;
307 if (theirs.pacsize_in && theirs.pacsize_out) {
308 if (theirs.pacsize_in < ours->pacsize_in) {
310 new->pacsize_in = theirs.pacsize_in;
312 if (theirs.pacsize_out < ours->pacsize_out) {
314 new->pacsize_out = theirs.pacsize_out;
318 if (theirs.winsize_in && theirs.winsize_out) {
319 if (theirs.winsize_in < ours->winsize_in) {
321 new->winsize_in = theirs.winsize_in;
323 if (theirs.winsize_out < ours->winsize_out) {
325 new->winsize_out = theirs.winsize_out;