Lines Matching defs:lci
308 static struct sock *__x25_find_socket(unsigned int lci, struct x25_neigh *nb)
313 if (x25_sk(s)->lci == lci && x25_sk(s)->neighbour == nb) {
322 struct sock *x25_find_socket(unsigned int lci, struct x25_neigh *nb)
327 s = __x25_find_socket(lci, nb);
337 unsigned int lci = 1;
340 while ((sk = x25_find_socket(lci, nb)) != NULL) {
342 if (++lci == 4096) {
343 lci = 0;
349 return lci;
795 x25->lci = x25_new_lci(x25->neighbour);
796 if (!x25->lci)
941 unsigned int lci)
1011 x25_forward_call(&dest_addr, nb, skb, lci) > 0)
1053 makex25->lci = lci;
1099 x25_transmit_clear_request(nb, lci, 0x01);
1219 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_EXTSEQ;
1220 *asmptr++ = (x25->lci >> 0) & 0xFF;
1224 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_STDSEQ;
1225 *asmptr++ = (x25->lci >> 0) & 0xFF;
1232 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_EXTSEQ;
1233 *asmptr++ = (x25->lci >> 0) & 0xFF;
1239 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_STDSEQ;
1240 *asmptr++ = (x25->lci >> 0) & 0xFF;