Leaked source code of windows server 2003
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

  1. /*++
  2. Copyright (c) 1989-2001 Microsoft Corporation
  3. Module Name:
  4. dgram.c
  5. Abstract:
  6. Datagram service
  7. Author:
  8. Jiandong Ruan
  9. Revision History:
  10. --*/
  11. #include "precomp.h"
  12. #include "dgram.tmh"
  13. NTSTATUS
  14. SmbSendDatagram(
  15. PSMB_DEVICE Device,
  16. PIRP Irp
  17. )
  18. {
  19. PAGED_CODE();
  20. SmbTrace(SMB_TRACE_CALL, ("Entering SmbSendDatagram\n"));
  21. return STATUS_NOT_SUPPORTED;
  22. }
  23. NTSTATUS
  24. SmbReceiveDatagram(
  25. PSMB_DEVICE Device,
  26. PIRP Irp
  27. )
  28. {
  29. PAGED_CODE();
  30. SmbTrace(SMB_TRACE_CALL, ("Entering SmbReceiveDatagram\n"));
  31. return STATUS_NOT_SUPPORTED;
  32. }