You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
653 B
47 lines
653 B
/*++
|
|
|
|
Copyright (c) 1989-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
dgram.c
|
|
|
|
Abstract:
|
|
|
|
Datagram service
|
|
|
|
Author:
|
|
|
|
Jiandong Ruan
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "precomp.h"
|
|
#include "dgram.tmh"
|
|
|
|
|
|
NTSTATUS
|
|
SmbSendDatagram(
|
|
PSMB_DEVICE Device,
|
|
PIRP Irp
|
|
)
|
|
{
|
|
PAGED_CODE();
|
|
|
|
SmbTrace(SMB_TRACE_CALL, ("Entering SmbSendDatagram\n"));
|
|
return STATUS_NOT_SUPPORTED;
|
|
}
|
|
|
|
NTSTATUS
|
|
SmbReceiveDatagram(
|
|
PSMB_DEVICE Device,
|
|
PIRP Irp
|
|
)
|
|
{
|
|
PAGED_CODE();
|
|
|
|
SmbTrace(SMB_TRACE_CALL, ("Entering SmbReceiveDatagram\n"));
|
|
return STATUS_NOT_SUPPORTED;
|
|
}
|