/** BEGIN COPYRIGHT BLOCK * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission. * Copyright (C) 2006 Red Hat, Inc. * All rights reserved. * * License: GPL (version 3 or any later version). * See LICENSE for details. * END COPYRIGHT BLOCK **/ #ifdef HAVE_CONFIG_H # include #endif /* FILE : remote.h AUTHOR : Jean-Luc SCHWING VERSION : 1.0 DATE : 04 May 1999 DESCRIPTION : This file contains the definitions used by the remote control module of ldclt. */ /* * Network includes */ #include #include #include #include #include #include #include #include typedef struct { uint32_t type,res,dnSize; char dn[sizeof(uint32_t)]; } repconfirm; extern int masterPort; /* End of file */