Lines Matching defs:pf

39 static int ax25_std_state1_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int pf, int type)
45 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
51 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
55 ax25_send_control(ax25, AX25_DM, pf, AX25_RESPONSE);
59 if (pf) {
81 if (pf) {
103 static int ax25_std_state2_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int pf, int type)
108 ax25_send_control(ax25, AX25_DM, pf, AX25_RESPONSE);
112 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
118 if (pf)
126 if (pf) ax25_send_control(ax25, AX25_DM, AX25_POLLON, AX25_RESPONSE);
141 static int ax25_std_state3_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int ns, int nr, int pf, int type)
155 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
168 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
182 if (type == AX25_COMMAND && pf)
194 if (type == AX25_COMMAND && pf)
220 if (pf) ax25_std_enquiry_response(ax25);
229 if (pf) {
239 if (pf) ax25_std_enquiry_response(ax25);
242 ax25_send_control(ax25, AX25_REJ, pf, AX25_RESPONSE);
266 static int ax25_std_state4_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int ns, int nr, int pf, int type)
280 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
295 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
309 if (type == AX25_RESPONSE && pf) {
326 if (type == AX25_COMMAND && pf)
338 if (pf && type == AX25_RESPONSE) {
355 if (type == AX25_COMMAND && pf)
374 if (pf)
384 if (pf) {
394 if (pf) ax25_std_enquiry_response(ax25);
397 ax25_send_control(ax25, AX25_REJ, pf, AX25_RESPONSE);
421 int queued = 0, frametype, ns, nr, pf;
423 frametype = ax25_decode(ax25, skb, &ns, &nr, &pf);
427 queued = ax25_std_state1_machine(ax25, skb, frametype, pf, type);
430 queued = ax25_std_state2_machine(ax25, skb, frametype, pf, type);
433 queued = ax25_std_state3_machine(ax25, skb, frametype, ns, nr, pf, type);
436 queued = ax25_std_state4_machine(ax25, skb, frametype, ns, nr, pf, type);