]> arthur.barton.de Git - netatalk.git/blobdiff - include/atalk/netddp.h
Remove all Appletalk stuff
[netatalk.git] / include / atalk / netddp.h
diff --git a/include/atalk/netddp.h b/include/atalk/netddp.h
deleted file mode 100644 (file)
index 7bf08b7..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (c) 1999 Adrian Sun (asun@zoology.washington.edu)
- * All Rights Reserved. See COPYRIGHT.
- *
- * this provides a generic interface to the ddp layer. with this, we
- * should be able to interact with any appletalk stack that allows
- * direct access to the ddp layer. right now, only os x server's ddp
- * layer and the generic socket based interfaces are understood.  
- */
-
-#ifndef _ATALK_NETDDP_H
-#define _ATALK_NETDDP_H 1
-
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <netatalk/at.h>
-
-extern int netddp_open   (struct sockaddr_at *, struct sockaddr_at *);
-
-#if !defined(NO_DDP) && defined(MACOSX_SERVER)
-extern int netddp_sendto (int, void *, size_t, unsigned int, 
-                          const struct sockaddr *, unsigned int);
-extern int netddp_recvfrom (int, void *, int, unsigned int, 
-                            struct sockaddr *, unsigned int *);
-#define netddp_close(a)  ddp_close(a)
-#else
-#include <unistd.h>
-#include <sys/types.h>
-
-#define netddp_close(a)  close(a)
-#define netddp_sendto    sendto
-#define netddp_recvfrom  recvfrom
-#endif
-
-#endif /* netddp.h */
-