components/proftpd/dtrace/ftp_provider_impl.c
author Craig Mohrman <craig.mohrman@oracle.com>
Mon, 27 Jul 2015 16:33:17 -0700
changeset 4700 3e0131debf7c
parent 3932 1b7dd68f6aa9
permissions -rw-r--r--
20217156 junit should have its tests hooked up in the Makefile

/*
 * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
 */

#include <sys/int_types.h>

#include "ftp_provider_impl.h"
#include "ftp_provider.h"

int
ftp_transfer_start_enabled(void)
{
	return (FTP_TRANSFER_START_ENABLED());
}

int
ftp_transfer_done_enabled(void)
{
	return (FTP_TRANSFER_DONE_ENABLED());
}

void
ftp_transfer_start(struct ftpproto *ptr)
{
	FTP_TRANSFER_START(ptr);
}

void
ftp_transfer_done(struct ftpproto *ptr)
{
	FTP_TRANSFER_DONE(ptr);
}