Lines Matching refs:pf
43 static int ax25_std_state1_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int pf, int t… in ax25_std_state1_machine() argument
49 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state1_machine()
55 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state1_machine()
59 ax25_send_control(ax25, AX25_DM, pf, AX25_RESPONSE); in ax25_std_state1_machine()
63 if (pf) { in ax25_std_state1_machine()
85 if (pf) { in ax25_std_state1_machine()
107 static int ax25_std_state2_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int pf, int t… in ax25_std_state2_machine() argument
112 ax25_send_control(ax25, AX25_DM, pf, AX25_RESPONSE); in ax25_std_state2_machine()
116 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state2_machine()
122 if (pf) in ax25_std_state2_machine()
130 if (pf) ax25_send_control(ax25, AX25_DM, AX25_POLLON, AX25_RESPONSE); in ax25_std_state2_machine()
145 …state3_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int ns, int nr, int pf, int type) in ax25_std_state3_machine() argument
159 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state3_machine()
172 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state3_machine()
186 if (type == AX25_COMMAND && pf) in ax25_std_state3_machine()
198 if (type == AX25_COMMAND && pf) in ax25_std_state3_machine()
224 if (pf) ax25_std_enquiry_response(ax25); in ax25_std_state3_machine()
233 if (pf) { in ax25_std_state3_machine()
243 if (pf) ax25_std_enquiry_response(ax25); in ax25_std_state3_machine()
246 ax25_send_control(ax25, AX25_REJ, pf, AX25_RESPONSE); in ax25_std_state3_machine()
270 …state4_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int ns, int nr, int pf, int type) in ax25_std_state4_machine() argument
284 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state4_machine()
299 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state4_machine()
313 if (type == AX25_RESPONSE && pf) { in ax25_std_state4_machine()
330 if (type == AX25_COMMAND && pf) in ax25_std_state4_machine()
342 if (pf && type == AX25_RESPONSE) { in ax25_std_state4_machine()
359 if (type == AX25_COMMAND && pf) in ax25_std_state4_machine()
378 if (pf) in ax25_std_state4_machine()
388 if (pf) { in ax25_std_state4_machine()
398 if (pf) ax25_std_enquiry_response(ax25); in ax25_std_state4_machine()
401 ax25_send_control(ax25, AX25_REJ, pf, AX25_RESPONSE); in ax25_std_state4_machine()
425 int queued = 0, frametype, ns, nr, pf; in ax25_std_frame_in() local
427 frametype = ax25_decode(ax25, skb, &ns, &nr, &pf); in ax25_std_frame_in()
431 queued = ax25_std_state1_machine(ax25, skb, frametype, pf, type); in ax25_std_frame_in()
434 queued = ax25_std_state2_machine(ax25, skb, frametype, pf, type); in ax25_std_frame_in()
437 queued = ax25_std_state3_machine(ax25, skb, frametype, ns, nr, pf, type); in ax25_std_frame_in()
440 queued = ax25_std_state4_machine(ax25, skb, frametype, ns, nr, pf, type); in ax25_std_frame_in()