Lines Matching refs:osk

908 struct sock *ax25_make_new(struct sock *osk, struct ax25_dev *ax25_dev)  in ax25_make_new()  argument
921 switch (osk->type) { in ax25_make_new()
935 sk->type = osk->type; in ax25_make_new()
936 sk->socket = osk->socket; in ax25_make_new()
937 sk->priority = osk->priority; in ax25_make_new()
938 sk->protocol = osk->protocol; in ax25_make_new()
939 sk->rcvbuf = osk->rcvbuf; in ax25_make_new()
940 sk->sndbuf = osk->sndbuf; in ax25_make_new()
941 sk->debug = osk->debug; in ax25_make_new()
943 sk->sleep = osk->sleep; in ax25_make_new()
944 sk->zapped = osk->zapped; in ax25_make_new()
946 ax25->modulus = osk->protinfo.ax25->modulus; in ax25_make_new()
947 ax25->backoff = osk->protinfo.ax25->backoff; in ax25_make_new()
948 ax25->pidincl = osk->protinfo.ax25->pidincl; in ax25_make_new()
949 ax25->iamdigi = osk->protinfo.ax25->iamdigi; in ax25_make_new()
950 ax25->rtt = osk->protinfo.ax25->rtt; in ax25_make_new()
951 ax25->t1 = osk->protinfo.ax25->t1; in ax25_make_new()
952 ax25->t2 = osk->protinfo.ax25->t2; in ax25_make_new()
953 ax25->t3 = osk->protinfo.ax25->t3; in ax25_make_new()
954 ax25->n2 = osk->protinfo.ax25->n2; in ax25_make_new()
955 ax25->idle = osk->protinfo.ax25->idle; in ax25_make_new()
956 ax25->paclen = osk->protinfo.ax25->paclen; in ax25_make_new()
957 ax25->window = osk->protinfo.ax25->window; in ax25_make_new()
960 ax25->source_addr = osk->protinfo.ax25->source_addr; in ax25_make_new()
962 if (osk->protinfo.ax25->digipeat != NULL) { in ax25_make_new()
968 memcpy(ax25->digipeat, osk->protinfo.ax25->digipeat, sizeof(ax25_digi)); in ax25_make_new()