s4:lib/messaging: terminate the irpc_servers_byname() result with server_id_set_disco...
[Samba/gebeck_regimport.git] / source3 / smbd / smb2_keepalive.c
blob24a4f8eade42795ce8c4462b70f665e18dfdac5e
1 /*
2 Unix SMB/CIFS implementation.
3 Core SMB2 server
5 Copyright (C) Stefan Metzmacher 2009
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "smbd/smbd.h"
23 #include "smbd/globals.h"
24 #include "../libcli/smb/smb_common.h"
26 NTSTATUS smbd_smb2_request_process_keepalive(struct smbd_smb2_request *req)
28 DATA_BLOB outbody;
29 NTSTATUS status;
31 status = smbd_smb2_request_verify_sizes(req, 0x04);
32 if (!NT_STATUS_IS_OK(status)) {
33 return smbd_smb2_request_error(req, status);
36 /* TODO: update some time stamps */
38 outbody = data_blob_talloc(req->out.vector, NULL, 0x04);
39 if (outbody.data == NULL) {
40 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
43 SSVAL(outbody.data, 0x00, 0x04); /* struct size */
44 SSVAL(outbody.data, 0x02, 0); /* reserved */
46 return smbd_smb2_request_done(req, outbody, NULL);