r6223: added a bit more datagram infrastructure and the beginnings of a test
[samba.git] / source / libcli / dgram / netlogon.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    handling for netlogon dgram requests
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "lib/events/events.h"
25 #include "dlinklist.h"
26 #include "libcli/nbt/libnbt.h"
27 #include "libcli/dgram/libdgram.h"
28 #include "lib/socket/socket.h"
29 #include "librpc/gen_ndr/ndr_nbt.h"
30
31 /* 
32    send a netlogon mailslot request 
33 */
34 NTSTATUS dgram_mailslot_netlogon_send(struct nbt_dgram_socket *dgmsock,
35                                       struct nbt_name *dest_name,
36                                       const char *dest_address,
37                                       struct nbt_name *src_name,
38                                       struct nbt_netlogon_packet *request)
39 {
40         NTSTATUS status;
41         DATA_BLOB blob;
42         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
43
44         status = ndr_push_struct_blob(&blob, tmp_ctx, request, 
45                                       (ndr_push_flags_fn_t)ndr_push_nbt_netlogon_packet);
46         if (!NT_STATUS_IS_OK(status)) {
47                 talloc_free(tmp_ctx);
48                 return status;
49         }
50
51
52         status = dgram_mailslot_send(dgmsock, DGRAM_DIRECT_UNIQUE, 
53                                      "\\MAILSLOT\\NET\\NETLOGON",
54                                      dest_name, dest_address, src_name, &blob);
55         talloc_free(tmp_ctx);
56         return status;
57 }
58