Deleted Added
full compact
smb_rq.h (139823) smb_rq.h (161523)
1/*-
2 * Copyright (c) 2000-2001, Boris Popov
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 15 unchanged lines hidden (view full) ---

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
1/*-
2 * Copyright (c) 2000-2001, Boris Popov
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 15 unchanged lines hidden (view full) ---

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/netsmb/smb_rq.h 139823 2005-01-07 01:45:51Z imp $
32 * $FreeBSD: head/sys/netsmb/smb_rq.h 161523 2006-08-22 03:05:51Z marcel $
33 */
34#ifndef _NETSMB_SMB_RQ_H_
35#define _NETSMB_SMB_RQ_H_
36
37#ifndef MB_MSYSTEM
38#include <sys/mchain.h>
39#endif
40

--- 36 unchanged lines hidden (view full) ---

77 struct smb_share* sr_share;
78 u_short sr_mid;
79 u_int32_t sr_seqno;
80 u_int32_t sr_rseqno;
81 struct mbchain sr_rq;
82 u_int8_t sr_rqflags;
83 u_int16_t sr_rqflags2;
84 u_char * sr_wcount;
33 */
34#ifndef _NETSMB_SMB_RQ_H_
35#define _NETSMB_SMB_RQ_H_
36
37#ifndef MB_MSYSTEM
38#include <sys/mchain.h>
39#endif
40

--- 36 unchanged lines hidden (view full) ---

77 struct smb_share* sr_share;
78 u_short sr_mid;
79 u_int32_t sr_seqno;
80 u_int32_t sr_rseqno;
81 struct mbchain sr_rq;
82 u_int8_t sr_rqflags;
83 u_int16_t sr_rqflags2;
84 u_char * sr_wcount;
85 u_short * sr_bcount;
85 void * sr_bcount; /* Points to 2-byte buffer. */
86 struct mdchain sr_rp;
87 int sr_rpgen;
88 int sr_rplast;
89 int sr_flags; /* SMBR_* */
90 int sr_rpsize;
91 struct smb_cred * sr_cred;
92 int sr_timo;
93 int sr_rexmit;
94 int sr_sendcnt;
95 struct timespec sr_timesent;
96 int sr_lerror;
97 u_int8_t * sr_rqsig;
86 struct mdchain sr_rp;
87 int sr_rpgen;
88 int sr_rplast;
89 int sr_flags; /* SMBR_* */
90 int sr_rpsize;
91 struct smb_cred * sr_cred;
92 int sr_timo;
93 int sr_rexmit;
94 int sr_sendcnt;
95 struct timespec sr_timesent;
96 int sr_lerror;
97 u_int8_t * sr_rqsig;
98 u_int16_t * sr_rqtid;
99 u_int16_t * sr_rquid;
98 void * sr_rqtid; /* Points to 2-byte buffer. */
99 void * sr_rquid; /* Points to 2-byte buffer. */
100 u_int8_t sr_errclass;
101 u_int16_t sr_serror;
102 u_int32_t sr_error;
103 u_int8_t sr_rpflags;
104 u_int16_t sr_rpflags2;
105 u_int16_t sr_rptid;
106 u_int16_t sr_rppid;
107 u_int16_t sr_rpuid;

--- 48 unchanged lines hidden ---
100 u_int8_t sr_errclass;
101 u_int16_t sr_serror;
102 u_int32_t sr_error;
103 u_int8_t sr_rpflags;
104 u_int16_t sr_rpflags2;
105 u_int16_t sr_rptid;
106 u_int16_t sr_rppid;
107 u_int16_t sr_rpuid;

--- 48 unchanged lines hidden ---