Home
last modified time | relevance | path

Searched refs:seqno (Results 1 – 25 of 34) sorted by relevance

12

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dgen_seqnum.c44 krb5_generate_seq_number(krb5_context context, const krb5_keyblock *key, krb5_ui_4 *seqno) in krb5_generate_seq_number() argument
61 seed.length = sizeof(*seqno); in krb5_generate_seq_number()
62 seed.data = (char *) seqno; in krb5_generate_seq_number()
75 *seqno &= 0x3fffffff; in krb5_generate_seq_number()
76 if (*seqno == 0) in krb5_generate_seq_number()
77 *seqno = 1; in krb5_generate_seq_number()
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A Dseq.c66 OM_uint32 seqno = (OM_uint32)(intptr_t)argp; in __context_debug_set_next_seqno() local
79 ctx->next_seqno = seqno; in __context_debug_set_next_seqno()
109 OM_uint32 seqno = (OM_uint32)(intptr_t)argp; in __context_debug_set_last_seqno() local
123 ctx->hist.seqno = seqno; in __context_debug_set_last_seqno()
143 *(OM_uint32 *)argp = ctx->hist.seqno; in __context_debug_get_last_seqno()
175 fprintf(stderr, "%u: ", ctx->hist.seqno); in __context_debug_print_seq_hist()
354 __dh_seq_detection(dh_gss_context_t ctx, OM_uint32 seqno) in __dh_seq_detection() argument
375 n = seqno - ctx->hist.seqno; in __dh_seq_detection()
405 ctx->hist.seqno = seqno; in __dh_seq_detection()
452 ctx->hist.seqno = 0; in __dh_init_seq_hist()
H A Ddh_gssapi.h146 OM_uint32 seqno; /* Last seqno seen */ member
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Dconfiglog.c49 rsci64 bytes_remaining, seqno; in ADM_Process_fru_log() local
85 seqno = (rscReply->remaining_log_bytes + in ADM_Process_fru_log()
89 seqno = rscReply->next_seq; in ADM_Process_fru_log()
107 rscCmd.start_seq = seqno; in ADM_Process_fru_log()
135 if (rscReply->next_seq > seqno + response_size) { in ADM_Process_fru_log()
137 rscReply->next_seq - (seqno + response_size)); in ADM_Process_fru_log()
139 seqno = rscReply->next_seq; in ADM_Process_fru_log()
H A Dconsolelog.c49 rsci64 bytes_remaining, seqno; in ADM_Process_console_log() local
85 seqno = (rscReply->remaining_log_bytes + in ADM_Process_console_log()
89 seqno = rscReply->next_seq; in ADM_Process_console_log()
107 rscCmd.start_seq = seqno; in ADM_Process_console_log()
135 if (rscReply->next_seq > seqno + response_size) { in ADM_Process_console_log()
137 rscReply->next_seq - (seqno + response_size)); in ADM_Process_console_log()
139 seqno = rscReply->next_seq; in ADM_Process_console_log()
H A Deventlog.c225 rsci64 events_remaining, seqno; in ADM_Process_new_event_log() local
266 seqno = (rscReply->remaining_log_events + in ADM_Process_new_event_log()
270 seqno = rscReply->next_seq; in ADM_Process_new_event_log()
282 rscCmd.start_seq = seqno; in ADM_Process_new_event_log()
307 if (seqno + returned_events < rscReply->next_seq) { in ADM_Process_new_event_log()
309 rscReply->next_seq - (seqno + returned_events)); in ADM_Process_new_event_log()
315 seqno = rscReply->next_seq; in ADM_Process_new_event_log()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Ddeflate.c50 int seqno; member
189 state->seqno = 0;
206 state->seqno = 0;
245 if (seq != state->seqno) {
250 state->unit, seq, state->seqno);
253 ++state->seqno;
318 ++state->seqno;
H A Dbsd-comp.c89 u_short seqno; /* sequence number of next packet */ member
278 db->seqno = 0;
457 db->seqno++;
578 if (seq != db->seqno++) {
581 db->unit, seq, db->seqno - 1);
626 max_ent, dlen, db->seqno);
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Ddeflate.c60 int seqno; member
270 state->seqno = 0; in z_comp_init()
291 state->seqno = 0; in z_comp_reset()
410 wptr[0] = state->seqno >> 8; in z_compress()
411 wptr[1] = state->seqno; in z_compress()
430 ++state->seqno; in z_compress()
571 ++state->seqno; in z_incomp()
721 state->seqno = 0; in z_decomp_init()
743 state->seqno = 0; in z_decomp_reset()
847 if (seq != state->seqno++) { in z_decompress()
[all …]
H A Dbsd-comp.c103 ushort_t seqno; /* sequence number of next packet */ member
331 db->seqno = 0; in bsd_reset()
710 *wptr++ = db->seqno >> 8; in bsd_compress()
711 *wptr++ = db->seqno; in bsd_compress()
718 if ((db->flags & DS_TESTOUT) && (db->seqno % 100) == 50) in bsd_compress()
722 ++db->seqno; in bsd_compress()
946 db->seqno++; in bsd_incomp()
1174 if ((db->flags & DS_TESTIN) && (db->seqno % 300) == 101) in bsd_decompress()
1181 if (db->hsize == 0 || seq != db->seqno++) { in bsd_decompress()
1185 "expected %d\n", db->unit, seq, db->seqno - 1); in bsd_decompress()
/illumos-gate/usr/src/cmd/mdb/common/modules/smbsrv/
H A Dsmbsrv_pcap.c217 uint32_t *seqno; in smbsrv_pcap_dump() local
257 seqno = &reply_seqno; in smbsrv_pcap_dump()
261 seqno = &call_seqno; in smbsrv_pcap_dump()
283 tcp_hdr.tha_seq = htonl(*seqno); in smbsrv_pcap_dump()
290 (*seqno) += len_w_hdrs; in smbsrv_pcap_dump()
/illumos-gate/usr/src/uts/common/io/atge/
H A Datge_l1e.c429 uint32_t seqno, len, flags; in atge_l1e_receive() local
479 seqno = ATGE_GET32(dma_rx_page, &(rs->seqno)); in atge_l1e_receive()
480 seqno = L1E_RX_SEQNO(seqno); in atge_l1e_receive()
487 if (seqno != l1e->atge_l1e_rx_seqno) { in atge_l1e_receive()
494 atgep->atge_name, __func__, seqno, in atge_l1e_receive()
570 atgep->atge_name, __func__, seqno, in atge_l1e_receive()
H A Datge_l1e_reg.h42 uint32_t seqno; member
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_sign.c106 uint32_t seqno, uchar_t *signature) in smb_compute_MAC() argument
155 smbhdr.s.sig[0] = htolel(seqno); in smb_compute_MAC()
/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_msg.c713 int seqno; in sip_create_nonOKack() local
784 seqno = sip_get_callseq_num(_request, &ret); in sip_create_nonOKack()
787 if ((ret = sip_add_cseq(_ack_msg, ACK, seqno)) != 0) in sip_create_nonOKack()
802 int seqno; in sip_create_OKack() local
880 seqno = sip_get_callseq_num(_response, &ret); in sip_create_OKack()
883 if ((ret = sip_add_cseq(_ack_msg, ACK, seqno)) != 0) in sip_create_OKack()
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/
H A Dtable.c321 uint32_t seqno, in ag_check() argument
352 nc_ag.ag_seqno = seqno; in ag_check()
448 ag->ag_seqno = seqno; in ag_check()
505 if (seqno < ag->ag_seqno) in ag_check()
506 seqno = ag->ag_seqno; in ag_check()
575 seqno = ag->ag_seqno; in ag_check()
577 ag->ag_seqno = seqno; in ag_check()
594 if (seqno < ag->ag_seqno) in ag_check()
595 seqno = ag->ag_seqno; in ag_check()
597 ag->ag_seqno = seqno; in ag_check()
[all …]
H A Dinput.c1384 uint32_t seqno; in ck_passwd() local
1426 seqno = ntohl(NA->au.a_md5.md5_seqno); in ck_passwd()
1428 (seqno == 0 || ((seqno - php->ph_seqno) & 0x80000000ul))) { in ck_passwd()
1431 (unsigned)seqno, (unsigned)php->ph_seqno); in ck_passwd()
1435 php->ph_seqno = seqno; in ck_passwd()
/illumos-gate/usr/src/cmd/cmd-inet/common/
H A Dkcmd.h99 krb5_creds **cred, krb5_int32 *seqno, krb5_int32 *server_seqno,
/illumos-gate/usr/src/uts/common/io/ntxn/
H A Dnic_cmn.h635 U32 seqno; member
646 U32 seqno; member
/illumos-gate/usr/src/cmd/cxgbetool/
H A Dcxgbetool.c190 entry->seqno = BE_32(entry->seqno); in get_devlog()
211 printf("%10d %15llu %8s %8s ", entry->seqno, in get_devlog()
/illumos-gate/usr/src/cmd/dtrace/demo/ip/
H A Dtcprst.d59 seqno[self->conn_id, i], \
133 seqno[self->conn_id, self->pcount] = ntohl(self->tcph->tha_seq);
/illumos-gate/usr/src/uts/common/io/net80211/
H A Dnet80211_ht.c302 ieee80211_seq seqno; in ampdu_rx_flush_upto() local
312 seqno = rap->rxa_start; in ampdu_rx_flush_upto()
322 if (!IEEE80211_SEQ_BA_BEFORE(seqno, winstart)) in ampdu_rx_flush_upto()
325 seqno = IEEE80211_SEQ_INC(seqno); in ampdu_rx_flush_upto()
357 rap->rxa_start = seqno; in ampdu_rx_flush_upto()
/illumos-gate/usr/src/uts/common/io/i40e/core/
H A Di40e_dcb.h163 __be32 seqno; member
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Droute.c245 mib2_ipv6RouteEntry_t *rp6, int seqno);
560 int seqno; in flushroutes() local
626 seqno = 0; /* ??? */ in flushroutes()
658 delRouteEntry(rp, NULL, seqno); in flushroutes()
659 seqno++; in flushroutes()
695 delRouteEntry(NULL, rp6, seqno); in flushroutes()
696 seqno++; in flushroutes()
714 delRouteEntry(mib2_ipRouteEntry_t *rp, mib2_ipv6RouteEntry_t *rp6, int seqno) in delRouteEntry() argument
737 rtm->rtm_seq = seqno; in delRouteEntry()
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsockstr.c1195 soflushconnind(struct sonode *so, t_scalar_t seqno) in soflushconnind() argument
1205 if (tci->SEQ_number == seqno) { in soflushconnind()
1207 ("t_discon_ind: found T_CONN_IND %d\n", seqno)); in soflushconnind()
1233 dprintso(so, 1, ("t_discon_ind: NOT found T_CONN_IND %d\n", seqno)); in soflushconnind()

12