Home
last modified time | relevance | path

Searched refs:discon (Results 1 – 17 of 17) sorted by relevance

/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dt_rcvdis.c46 _tx_rcvdis(int fd, struct t_discon *discon, int api_semantics) in _tx_rcvdis() argument
211 if (discon != NULL) { in _tx_rcvdis()
212 if (_T_IS_TLI(api_semantics) || discon->udata.maxlen > 0) { in _tx_rcvdis()
213 if (databuf.len > (int)discon->udata.maxlen) { in _tx_rcvdis()
217 (void) memcpy(discon->udata.buf, databuf.buf, in _tx_rcvdis()
219 discon->udata.len = databuf.len; in _tx_rcvdis()
221 discon->reason = pptr->discon_ind.DISCON_reason; in _tx_rcvdis()
222 discon->sequence = pptr->discon_ind.SEQ_number; in _tx_rcvdis()
H A Dxti_wrappers.c161 _xti_rcvdis(int fd, struct t_discon *discon) in _xti_rcvdis() argument
163 return (_tx_rcvdis(fd, discon, TX_XTI_API)); in _xti_rcvdis()
173 _xti_rcvreldata(int fd, struct t_discon *discon) in _xti_rcvreldata() argument
175 return (_tx_rcvreldata(fd, discon, TX_XTI_XNS5_API)); in _xti_rcvreldata()
230 _xti_sndreldata(int fd, struct t_discon *discon) in _xti_sndreldata() argument
232 return (_tx_sndreldata(fd, discon, TX_XTI_XNS5_API)); in _xti_sndreldata()
H A Dt_sndreldata.c45 _tx_sndreldata(int fd, struct t_discon *discon, int api_semantics) in _tx_sndreldata() argument
85 if (discon && discon->udata.len) { in _tx_sndreldata()
H A Dtli_wrappers.c146 t_rcvdis(int fd, struct t_discon *discon) in t_rcvdis() argument
148 return (_tx_rcvdis(fd, discon, TX_TLI_API)); in t_rcvdis()
H A Dt_getinfo.c103 info->discon = infoackp->DDATA_size; in _tx_getinfo()
H A Dt_rcvreldata.c49 _tx_rcvreldata(int fd, struct t_discon *discon, int api_semantics) in _tx_rcvreldata() argument
H A D_utility.c934 info->discon = tiap->DDATA_size; in _t_create()
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Dtlx.c480 struct t_discon *discon; in process_tlook() local
485 if ((discon = (struct t_discon *) in process_tlook()
490 if (t_rcvdis(fd, discon) < 0) { in process_tlook()
492 (void) t_free((char *)discon, T_DIS); in process_tlook()
502 (cip->call->sequence != discon->sequence)) { in process_tlook()
511 (void) t_free((char *)discon, T_DIS); in process_tlook()
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_trantcp.c161 goto discon; in nb_getmsg_mlen()
165 goto discon; in nb_getmsg_mlen()
170 goto discon; in nb_getmsg_mlen()
174 goto discon; in nb_getmsg_mlen()
178 goto discon; in nb_getmsg_mlen()
186 discon: in nb_getmsg_mlen()
/illumos-gate/usr/src/uts/common/sys/
H A Dtiuser.h80 t_scalar_t discon; /* max data for disconnect primitives */ member
215 extern int t_rcvdis(int fildes, struct t_discon *discon);
/illumos-gate/usr/src/uts/common/ktli/
H A Dt_kalloc.c105 tiptr->tp_info.discon); in t_kalloc()
121 _alloc_buf(&p.dis->udata, tiptr->tp_info.discon); in t_kalloc()
H A Dt_kopen.c255 ntiptr->tp_info.discon = _t_setsize(inforeq.DDATA_size); in t_kopen()
/illumos-gate/usr/src/cmd/fs.d/smbclnt/smbutil/
H A DMakefile36 OBJS= smbutil.o discon.o info.o login.o lookup.o print.o status.o view.o \
/illumos-gate/usr/src/cmd/listen/
H A Dlisten.c179 static void pitchcall(struct call_list *pending, struct t_discon *discon);
1631 pitchcall(struct call_list *pending, struct t_discon *discon) in pitchcall() argument
1635 DEBUG((9, "pitching call, sequence # is %d", discon->sequence)); in pitchcall()
1637 discon->sequence = -1; in pitchcall()
1643 if (p->c_cp->sequence == discon->sequence) { in pitchcall()
1659 discon->sequence = -1; in pitchcall()
1666 discon->sequence = -1; in pitchcall()
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfs_tbind.c1269 struct t_discon discon; in discon_get() local
1271 discon.udata.buf = (char *)0; in discon_get()
1272 discon.udata.maxlen = 0; in discon_get()
1273 if (t_rcvdis(fd, &discon) == -1) { in discon_get()
1283 if (conn->conn_call->sequence == discon.sequence) { in discon_get()
/illumos-gate/usr/src/head/
H A Dxti.h270 t_scalar_t discon; /* max data for disconnect primitives */ member
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_authenticate.c870 DTRACE_PROBE1(discon, struct sonode *, so); in smb_authsock_recv()