Lines Matching full:circuit
59 static unsigned short circuit = 0x101; variable
163 * Find a connected NET/ROM socket given my circuit IDs.
185 * Find a connected NET/ROM socket given their circuit IDs.
209 * Find next free circuit ID.
213 unsigned short id = circuit; in nr_find_next_circuit()
711 circuit = nr_find_next_circuit(); in nr_connect()
714 nr->my_index = circuit / 256; in nr_connect()
715 nr->my_id = circuit % 256; in nr_connect()
717 circuit++; in nr_connect()
910 * Find an existing socket connection, based on circuit ID, if it's in nr_rx_frame()
911 * a Connect Request base it on their circuit ID. in nr_rx_frame()
913 * Circuit ID 0/0 is not valid but it could still be a "reset" for a in nr_rx_frame()
914 * circuit that no longer exists at the other end ... in nr_rx_frame()
985 /* Fill in his circuit details */ in nr_rx_frame()
995 circuit = nr_find_next_circuit(); in nr_rx_frame()
998 nr_make->my_index = circuit / 256; in nr_rx_frame()
999 nr_make->my_id = circuit % 256; in nr_rx_frame()
1001 circuit++; in nr_rx_frame()