msgsvc_svc.c (8d7e4166) msgsvc_svc.c (148c5f43)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

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

13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

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

13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
21/*
22/*
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 */
25
26/*
27 * Message Service
28 */
29
30#include <syslog.h>
31#include <stdlib.h>
32
33#include <smbsrv/libsmb.h>
34#include <smbsrv/libmlrpc.h>
35#include <smbsrv/libmlsvc.h>
36#include <smbsrv/ndl/msgsvc.ndl>
24 */
25
26/*
27 * Message Service
28 */
29
30#include <syslog.h>
31#include <stdlib.h>
32
33#include <smbsrv/libsmb.h>
34#include <smbsrv/libmlrpc.h>
35#include <smbsrv/libmlsvc.h>
36#include <smbsrv/ndl/msgsvc.ndl>
37#include <smbsrv/nterror.h>
38#include <smbsrv/smbinfo.h>
39#include <smbsrv/nmpipes.h>
40
41static int msgsvcsend_NetrSendMessage(void *, ndr_xa_t *);
42
43static ndr_stub_table_t msgsvcsend_stub_table[] = {
44 { msgsvcsend_NetrSendMessage, MSGSVCSEND_OPNUM_NetrSendMessage },
45 {0}

--- 42 unchanged lines hidden ---
37#include <smbsrv/smbinfo.h>
38#include <smbsrv/nmpipes.h>
39
40static int msgsvcsend_NetrSendMessage(void *, ndr_xa_t *);
41
42static ndr_stub_table_t msgsvcsend_stub_table[] = {
43 { msgsvcsend_NetrSendMessage, MSGSVCSEND_OPNUM_NetrSendMessage },
44 {0}

--- 42 unchanged lines hidden ---