Lines Matching refs:pf
42 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
48 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state1_machine()
54 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state1_machine()
58 ax25_send_control(ax25, AX25_DM, pf, AX25_RESPONSE); in ax25_std_state1_machine()
62 if (pf) { in ax25_std_state1_machine()
84 if (pf) { in ax25_std_state1_machine()
106 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
111 ax25_send_control(ax25, AX25_DM, pf, AX25_RESPONSE); in ax25_std_state2_machine()
115 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state2_machine()
121 if (pf) in ax25_std_state2_machine()
129 if (pf) ax25_send_control(ax25, AX25_DM, AX25_POLLON, AX25_RESPONSE); in ax25_std_state2_machine()
144 …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
158 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state3_machine()
171 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state3_machine()
185 if (type == AX25_COMMAND && pf) in ax25_std_state3_machine()
197 if (type == AX25_COMMAND && pf) in ax25_std_state3_machine()
223 if (pf) ax25_std_enquiry_response(ax25); in ax25_std_state3_machine()
232 if (pf) { in ax25_std_state3_machine()
242 if (pf) ax25_std_enquiry_response(ax25); in ax25_std_state3_machine()
245 ax25_send_control(ax25, AX25_REJ, pf, AX25_RESPONSE); in ax25_std_state3_machine()
269 …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
283 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state4_machine()
298 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state4_machine()
312 if (type == AX25_RESPONSE && pf) { in ax25_std_state4_machine()
329 if (type == AX25_COMMAND && pf) in ax25_std_state4_machine()
341 if (pf && type == AX25_RESPONSE) { in ax25_std_state4_machine()
358 if (type == AX25_COMMAND && pf) in ax25_std_state4_machine()
377 if (pf) in ax25_std_state4_machine()
387 if (pf) { in ax25_std_state4_machine()
397 if (pf) ax25_std_enquiry_response(ax25); in ax25_std_state4_machine()
400 ax25_send_control(ax25, AX25_REJ, pf, AX25_RESPONSE); in ax25_std_state4_machine()
424 int queued = 0, frametype, ns, nr, pf; in ax25_std_frame_in() local
426 frametype = ax25_decode(ax25, skb, &ns, &nr, &pf); in ax25_std_frame_in()
430 queued = ax25_std_state1_machine(ax25, skb, frametype, pf, type); in ax25_std_frame_in()
433 queued = ax25_std_state2_machine(ax25, skb, frametype, pf, type); in ax25_std_frame_in()
436 queued = ax25_std_state3_machine(ax25, skb, frametype, ns, nr, pf, type); in ax25_std_frame_in()
439 queued = ax25_std_state4_machine(ax25, skb, frametype, ns, nr, pf, type); in ax25_std_frame_in()