Searched refs:req (Results 201 - 225 of 4261) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source3/winbindd/
H A Dwb_gid2sid.c36 struct tevent_req *req, *subreq; local
42 req = tevent_req_create(mem_ctx, &state, struct wb_gid2sid_state);
43 if (req == NULL) {
55 tevent_req_nterror(req,
58 tevent_req_done(req);
60 return tevent_req_post(req, ev);
80 if (tevent_req_nomem(subreq, req)) {
81 return tevent_req_post(req, ev);
83 tevent_req_set_callback(subreq, wb_gid2sid_done, req);
84 return req;
89 struct tevent_req *req = tevent_req_callback_data( local
108 wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid) argument
[all...]
H A Dwb_uid2sid.c36 struct tevent_req *req, *subreq; local
42 req = tevent_req_create(mem_ctx, &state, struct wb_uid2sid_state);
43 if (req == NULL) {
55 tevent_req_nterror(req,
58 tevent_req_done(req);
60 return tevent_req_post(req, ev);
80 if (tevent_req_nomem(subreq, req)) {
81 return tevent_req_post(req, ev);
83 tevent_req_set_callback(subreq, wb_uid2sid_done, req);
84 return req;
89 struct tevent_req *req = tevent_req_callback_data( local
108 wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid) argument
[all...]
H A Dwinbindd_getpwuid.c37 struct tevent_req *req, *subreq; local
40 req = tevent_req_create(mem_ctx, &state,
42 if (req == NULL) {
50 if (tevent_req_nomem(subreq, req)) {
51 return tevent_req_post(req, ev);
54 req);
55 return req;
60 struct tevent_req *req = tevent_req_callback_data( local
63 req, struct winbindd_getpwuid_state);
69 tevent_req_nterror(req, statu
82 struct tevent_req *req = tevent_req_callback_data( local
95 winbindd_getpwuid_recv(struct tevent_req *req, struct winbindd_response *response) argument
[all...]
H A Dwinbindd_remove_mapping.c35 struct tevent_req *req, *subreq; local
40 req = tevent_req_create(mem_ctx, &state,
42 if (req == NULL) {
54 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
55 return tevent_req_post(req, ev);
66 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
67 return tevent_req_post(req, ev);
75 if (tevent_req_nomem(subreq, req)) {
76 return tevent_req_post(req, ev);
78 tevent_req_set_callback(subreq, winbindd_remove_mapping_done, req);
84 struct tevent_req *req = tevent_req_callback_data( local
102 winbindd_remove_mapping_recv(struct tevent_req *req, struct winbindd_response *response) argument
[all...]
H A Dwinbindd_set_mapping.c35 struct tevent_req *req, *subreq; local
40 req = tevent_req_create(mem_ctx, &state,
42 if (req == NULL) {
54 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
55 return tevent_req_post(req, ev);
66 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
67 return tevent_req_post(req, ev);
75 if (tevent_req_nomem(subreq, req)) {
76 return tevent_req_post(req, ev);
78 tevent_req_set_callback(subreq, winbindd_set_mapping_done, req);
84 struct tevent_req *req = tevent_req_callback_data( local
102 winbindd_set_mapping_recv(struct tevent_req *req, struct winbindd_response *response) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/libcli/raw/
H A Dclisession.c28 req = smbcli_request_setup_session(session, cmd, wct, buflen); \
29 if (!req) return NULL; \
86 struct smbcli_request *req = NULL; local
91 SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
92 SSVAL(req->out.vwv, VWV(1), 0);
93 SSVAL(req->out.vwv,VWV(2),parms->old.in.bufsize);
94 SSVAL(req->out.vwv,VWV(3),parms->old.in.mpx_max);
95 SSVAL(req->out.vwv,VWV(4),parms->old.in.vc_num);
96 SIVAL(req->out.vwv,VWV(5),parms->old.in.sesskey);
97 SSVAL(req
159 smb_raw_sesssetup_recv(struct smbcli_request *req, TALLOC_CTX *mem_ctx, union smb_sesssetup *parms) argument
238 struct smbcli_request *req = smb_raw_sesssetup_send(session, parms); local
248 struct smbcli_request *req; local
268 struct smbcli_request *req = smb_raw_ulogoff_send(session); local
278 struct smbcli_request *req; local
295 struct smbcli_request *req = smb_raw_exit_send(session); local
[all...]
H A Drawnegotiate.c56 struct smbcli_request *req; local
60 req = smbcli_request_setup_transport(transport, SMBnegprot, 0, 0);
61 if (!req) {
77 SSVAL(req->out.hdr,HDR_FLG2, flags2);
81 smbcli_req_append_bytes(req, (const uint8_t *)"\2", 1);
82 smbcli_req_append_string(req, prots[i].name, STR_TERMINATE | STR_ASCII);
85 if (!smbcli_request_send(req)) {
86 smbcli_request_destroy(req);
90 return req;
96 NTSTATUS smb_raw_negotiate_recv(struct smbcli_request *req) argument
204 struct smbcli_request *req = smb_raw_negotiate_send(transport, unicode, maxprotocol); local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/libcli/raw/
H A Dclisession.c28 req = smbcli_request_setup_session(session, cmd, wct, buflen); \
29 if (!req) return NULL; \
86 struct smbcli_request *req = NULL; local
91 SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
92 SSVAL(req->out.vwv, VWV(1), 0);
93 SSVAL(req->out.vwv,VWV(2),parms->old.in.bufsize);
94 SSVAL(req->out.vwv,VWV(3),parms->old.in.mpx_max);
95 SSVAL(req->out.vwv,VWV(4),parms->old.in.vc_num);
96 SIVAL(req->out.vwv,VWV(5),parms->old.in.sesskey);
97 SSVAL(req
159 smb_raw_sesssetup_recv(struct smbcli_request *req, TALLOC_CTX *mem_ctx, union smb_sesssetup *parms) argument
238 struct smbcli_request *req = smb_raw_sesssetup_send(session, parms); local
248 struct smbcli_request *req; local
268 struct smbcli_request *req = smb_raw_ulogoff_send(session); local
278 struct smbcli_request *req; local
295 struct smbcli_request *req = smb_raw_exit_send(session); local
[all...]
H A Drawnegotiate.c56 struct smbcli_request *req; local
60 req = smbcli_request_setup_transport(transport, SMBnegprot, 0, 0);
61 if (!req) {
77 SSVAL(req->out.hdr,HDR_FLG2, flags2);
81 smbcli_req_append_bytes(req, (const uint8_t *)"\2", 1);
82 smbcli_req_append_string(req, prots[i].name, STR_TERMINATE | STR_ASCII);
85 if (!smbcli_request_send(req)) {
86 smbcli_request_destroy(req);
90 return req;
96 NTSTATUS smb_raw_negotiate_recv(struct smbcli_request *req) argument
204 struct smbcli_request *req = smb_raw_negotiate_send(transport, unicode, maxprotocol); local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/libcli/raw/
H A Dclisession.c28 req = smbcli_request_setup_session(session, cmd, wct, buflen); \
29 if (!req) return NULL; \
86 struct smbcli_request *req = NULL; local
91 SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
92 SSVAL(req->out.vwv, VWV(1), 0);
93 SSVAL(req->out.vwv,VWV(2),parms->old.in.bufsize);
94 SSVAL(req->out.vwv,VWV(3),parms->old.in.mpx_max);
95 SSVAL(req->out.vwv,VWV(4),parms->old.in.vc_num);
96 SIVAL(req->out.vwv,VWV(5),parms->old.in.sesskey);
97 SSVAL(req
159 smb_raw_sesssetup_recv(struct smbcli_request *req, TALLOC_CTX *mem_ctx, union smb_sesssetup *parms) argument
238 struct smbcli_request *req = smb_raw_sesssetup_send(session, parms); local
248 struct smbcli_request *req; local
268 struct smbcli_request *req = smb_raw_ulogoff_send(session); local
278 struct smbcli_request *req; local
295 struct smbcli_request *req = smb_raw_exit_send(session); local
[all...]
H A Drawnegotiate.c56 struct smbcli_request *req; local
60 req = smbcli_request_setup_transport(transport, SMBnegprot, 0, 0);
61 if (!req) {
77 SSVAL(req->out.hdr,HDR_FLG2, flags2);
81 smbcli_req_append_bytes(req, (const uint8_t *)"\2", 1);
82 smbcli_req_append_string(req, prots[i].name, STR_TERMINATE | STR_ASCII);
85 if (!smbcli_request_send(req)) {
86 smbcli_request_destroy(req);
90 return req;
96 NTSTATUS smb_raw_negotiate_recv(struct smbcli_request *req) argument
204 struct smbcli_request *req = smb_raw_negotiate_send(transport, unicode, maxprotocol); local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/hspot/wlan/
H A Dwlan.c44 int reqLength, wlanReqT *req, void *rspData);
155 int reqLength, wlanReqT *req, wlanCreateRspT *rsp)
163 if (reqLength != sizeof(wlanReqT) || req == 0 || rsp == 0) {
214 wlanReqT req; local
219 req.handler = (requestHandlerT)wlanCreateHandler;
220 if (!dspRequestSynch(dsp(), 0, sizeof(req), (uint8 *)&req, (uint8 *)&rsp))
231 int reqLength, wlanReqT *req, void *rspNull)
234 if (wlan == 0 || reqLength != sizeof(wlanReqT) || req == 0) {
246 wlanReqT req; local
154 wlanCreateHandler(wlanT *wlanNull, int reqLength, wlanReqT *req, wlanCreateRspT *rsp) argument
230 wlanDestroyHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
274 wlanEnableEventMsgHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
294 wlanReqT req; local
305 wlanDisableEventMsgHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
325 wlanReqT req; local
336 wlanAddVendorIeHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
356 wlanReqT req; local
369 wlanDeleteVendorIeHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
388 wlanReqT req; local
401 wlanIeHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
420 wlanReqT req; local
433 wlanStartEscanHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
467 wlanReqT req; local
481 wlanStopScanHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
500 wlanReqT req; local
510 wlanDisassociateHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
529 wlanReqT req; local
539 wlanPmfDisassociateHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
558 wlanReqT req; local
568 wlanBssTransitionQueryHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
587 wlanReqT req; local
597 wlanBssTransReqEssDisassocImminentHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
628 wlanReqT req; local
644 wlanActionFrameHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
667 wlanReqT req; local
688 wlanAssociationStatusHandler(wlanT *wlan, int reqLength, wlanReqT *req, wlanAssociationStatusRspT *rsp) argument
708 wlanReqT req; local
724 wlanTdlsDiscoveryRequestHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
754 wlanReqT req; local
766 wlanTdlsSetupRequestHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
796 wlanReqT req; local
808 wlanDropGratuitousArpHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
827 wlanReqT req; local
839 wlanWnmHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
858 wlanReqT req; local
870 wlanWnmGetHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rsp) argument
888 wlanReqT req; local
901 wlanPmfHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
920 wlanReqT req; local
932 wlanMacHandler(wlanT *wlan, int reqLength, wlanReqT *req, void *rspNull) argument
956 wlanReqT *req; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/lib/util/
H A Dtevent_ntstatus.c23 bool tevent_req_nterror(struct tevent_req *req, NTSTATUS status) argument
25 return tevent_req_error(req, NT_STATUS_V(status));
28 bool tevent_req_is_nterror(struct tevent_req *req, NTSTATUS *status) argument
33 if (!tevent_req_is_error(req, &state, &err)) {
53 NTSTATUS tevent_req_simple_recv_ntstatus(struct tevent_req *req) argument
57 if (tevent_req_is_nterror(req, &status)) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/nilfs2/
H A Difile.c64 struct nilfs_palloc_req req; local
67 req.pr_entry_nr = 0; /* 0 says find free inode from beginning of
69 req.pr_entry_bh = NULL;
71 ret = nilfs_palloc_prepare_alloc_entry(ifile, &req);
73 ret = nilfs_palloc_get_entry_block(ifile, req.pr_entry_nr, 1,
74 &req.pr_entry_bh);
76 nilfs_palloc_abort_alloc_entry(ifile, &req);
79 brelse(req.pr_entry_bh);
82 nilfs_palloc_commit_alloc_entry(ifile, &req);
83 nilfs_mdt_mark_buffer_dirty(req
106 struct nilfs_palloc_req req = { local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/nilfs2/
H A Difile.c64 struct nilfs_palloc_req req; local
67 req.pr_entry_nr = 0; /* 0 says find free inode from beginning of
69 req.pr_entry_bh = NULL;
71 ret = nilfs_palloc_prepare_alloc_entry(ifile, &req);
73 ret = nilfs_palloc_get_entry_block(ifile, req.pr_entry_nr, 1,
74 &req.pr_entry_bh);
76 nilfs_palloc_abort_alloc_entry(ifile, &req);
79 brelse(req.pr_entry_bh);
82 nilfs_palloc_commit_alloc_entry(ifile, &req);
83 nilfs_mdt_mark_buffer_dirty(req
106 struct nilfs_palloc_req req = { local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/libcli/smb2/
H A Dnotify.c33 struct smb2_request *req; local
36 req = smb2_request_init_tree(tree, SMB2_OP_NOTIFY, 0x20, false, 0);
37 if (req == NULL) return NULL;
39 SSVAL(req->out.hdr, SMB2_HDR_CREDIT, 0x0030);
41 SSVAL(req->out.body, 0x02, io->in.recursive);
42 SIVAL(req->out.body, 0x04, io->in.buffer_size);
43 smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
44 SIVAL(req->out.body, 0x18, io->in.completion_filter);
45 SIVAL(req->out.body, 0x1C, io->in.unknown);
47 old_timeout = req
59 smb2_notify_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx, struct smb2_notify *io) argument
112 struct smb2_request *req = smb2_notify_send(tree, io); local
[all...]
H A Dtcon.c52 struct smb2_request *req; local
55 req = smb2_request_init(tree->session->transport, SMB2_OP_TCON,
57 if (req == NULL) return NULL;
59 SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, tree->session->uid);
60 req->session = tree->session;
62 SSVAL(req->out.body, 0x02, io->in.reserved);
63 status = smb2_push_o16s16_string(&req->out, 0x04, io->in.path);
65 talloc_free(req);
69 smb2_transport_send(req);
71 return req;
78 smb2_tree_connect_recv(struct smb2_request *req, struct smb2_tree_connect *io) argument
110 struct smb2_request *req = smb2_tree_connect_send(tree, io); local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/lib/util/
H A Dtevent_ntstatus.c23 bool tevent_req_nterror(struct tevent_req *req, NTSTATUS status) argument
25 return tevent_req_error(req, NT_STATUS_V(status));
28 bool tevent_req_is_nterror(struct tevent_req *req, NTSTATUS *status) argument
33 if (!tevent_req_is_error(req, &state, &err)) {
53 NTSTATUS tevent_req_simple_recv_ntstatus(struct tevent_req *req) argument
57 if (tevent_req_is_nterror(req, &status)) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/libcli/smb2/
H A Dnotify.c33 struct smb2_request *req; local
36 req = smb2_request_init_tree(tree, SMB2_OP_NOTIFY, 0x20, false, 0);
37 if (req == NULL) return NULL;
39 SSVAL(req->out.hdr, SMB2_HDR_CREDIT, 0x0030);
41 SSVAL(req->out.body, 0x02, io->in.recursive);
42 SIVAL(req->out.body, 0x04, io->in.buffer_size);
43 smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
44 SIVAL(req->out.body, 0x18, io->in.completion_filter);
45 SIVAL(req->out.body, 0x1C, io->in.unknown);
47 old_timeout = req
59 smb2_notify_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx, struct smb2_notify *io) argument
112 struct smb2_request *req = smb2_notify_send(tree, io); local
[all...]
H A Dtcon.c52 struct smb2_request *req; local
55 req = smb2_request_init(tree->session->transport, SMB2_OP_TCON,
57 if (req == NULL) return NULL;
59 SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, tree->session->uid);
60 req->session = tree->session;
62 SSVAL(req->out.body, 0x02, io->in.reserved);
63 status = smb2_push_o16s16_string(&req->out, 0x04, io->in.path);
65 talloc_free(req);
69 smb2_transport_send(req);
71 return req;
78 smb2_tree_connect_recv(struct smb2_request *req, struct smb2_tree_connect *io) argument
110 struct smb2_request *req = smb2_tree_connect_send(tree, io); local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/lib/util/
H A Dtevent_ntstatus.c23 bool tevent_req_nterror(struct tevent_req *req, NTSTATUS status) argument
25 return tevent_req_error(req, NT_STATUS_V(status));
28 bool tevent_req_is_nterror(struct tevent_req *req, NTSTATUS *status) argument
33 if (!tevent_req_is_error(req, &state, &err)) {
53 NTSTATUS tevent_req_simple_recv_ntstatus(struct tevent_req *req) argument
57 if (tevent_req_is_nterror(req, &status)) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/libcli/smb2/
H A Dnotify.c33 struct smb2_request *req; local
36 req = smb2_request_init_tree(tree, SMB2_OP_NOTIFY, 0x20, false, 0);
37 if (req == NULL) return NULL;
39 SSVAL(req->out.hdr, SMB2_HDR_CREDIT, 0x0030);
41 SSVAL(req->out.body, 0x02, io->in.recursive);
42 SIVAL(req->out.body, 0x04, io->in.buffer_size);
43 smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
44 SIVAL(req->out.body, 0x18, io->in.completion_filter);
45 SIVAL(req->out.body, 0x1C, io->in.unknown);
47 old_timeout = req
59 smb2_notify_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx, struct smb2_notify *io) argument
112 struct smb2_request *req = smb2_notify_send(tree, io); local
[all...]
H A Dtcon.c52 struct smb2_request *req; local
55 req = smb2_request_init(tree->session->transport, SMB2_OP_TCON,
57 if (req == NULL) return NULL;
59 SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, tree->session->uid);
60 req->session = tree->session;
62 SSVAL(req->out.body, 0x02, io->in.reserved);
63 status = smb2_push_o16s16_string(&req->out, 0x04, io->in.path);
65 talloc_free(req);
69 smb2_transport_send(req);
71 return req;
78 smb2_tree_connect_recv(struct smb2_request *req, struct smb2_tree_connect *io) argument
110 struct smb2_request *req = smb2_tree_connect_send(tree, io); local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/smb_server/smb/
H A Dsesssetup.c36 static void sesssetup_common_strings(struct smbsrv_request *req, argument
39 (*os) = talloc_asprintf(req, "Unix");
40 (*lanman) = talloc_asprintf(req, "Samba %s", SAMBA_VERSION_STRING);
41 (*domain) = talloc_asprintf(req, "%s",
42 lp_workgroup(req->smb_conn->lp_ctx));
45 static void smbsrv_sesssetup_backend_send(struct smbsrv_request *req, argument
50 req->smb_conn->negotiate.done_sesssetup = true;
52 req->session = talloc_steal(req->smb_conn, req
60 struct smbsrv_request *req = talloc_get_type(private_data, struct smbsrv_request); local
100 sesssetup_old(struct smbsrv_request *req, union smb_sesssetup *sess) argument
156 struct smbsrv_request *req = talloc_get_type(private_data, struct smbsrv_request); local
204 sesssetup_nt1(struct smbsrv_request *req, union smb_sesssetup *sess) argument
284 struct smbsrv_request *req; member in struct:sesssetup_spnego_state
293 struct smbsrv_request *req = s->req; local
337 sesssetup_spnego(struct smbsrv_request *req, union smb_sesssetup *sess) argument
425 smbsrv_sesssetup_backend(struct smbsrv_request *req, union smb_sesssetup *sess) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/smb_server/smb/
H A Dsesssetup.c36 static void sesssetup_common_strings(struct smbsrv_request *req, argument
39 (*os) = talloc_asprintf(req, "Unix");
40 (*lanman) = talloc_asprintf(req, "Samba %s", SAMBA_VERSION_STRING);
41 (*domain) = talloc_asprintf(req, "%s",
42 lp_workgroup(req->smb_conn->lp_ctx));
45 static void smbsrv_sesssetup_backend_send(struct smbsrv_request *req, argument
50 req->smb_conn->negotiate.done_sesssetup = true;
52 req->session = talloc_steal(req->smb_conn, req
60 struct smbsrv_request *req = talloc_get_type(private_data, struct smbsrv_request); local
100 sesssetup_old(struct smbsrv_request *req, union smb_sesssetup *sess) argument
156 struct smbsrv_request *req = talloc_get_type(private_data, struct smbsrv_request); local
204 sesssetup_nt1(struct smbsrv_request *req, union smb_sesssetup *sess) argument
284 struct smbsrv_request *req; member in struct:sesssetup_spnego_state
293 struct smbsrv_request *req = s->req; local
337 sesssetup_spnego(struct smbsrv_request *req, union smb_sesssetup *sess) argument
425 smbsrv_sesssetup_backend(struct smbsrv_request *req, union smb_sesssetup *sess) argument
[all...]

Completed in 281 milliseconds

1234567891011>>