summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/rtems/bootp.h
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijay@rtems.org>2021-02-24 19:06:38 -0700
committerVijay Kumar Banerjee <vijay@rtems.org>2021-04-07 16:15:38 -0600
commit2a13ad389af61429a184e1cfac53c69eb673ad76 (patch)
tree035aca3f29ec996074a55d22b028f29c1d0cc4ea /cpukit/libnetworking/rtems/bootp.h
parentcpukit: Move ftpfs from libnetworking to libfs (diff)
downloadrtems-2a13ad389af61429a184e1cfac53c69eb673ad76.tar.bz2
cpukit: Remove libnetworking
Update #3850
Diffstat (limited to 'cpukit/libnetworking/rtems/bootp.h')
-rw-r--r--cpukit/libnetworking/rtems/bootp.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/cpukit/libnetworking/rtems/bootp.h b/cpukit/libnetworking/rtems/bootp.h
deleted file mode 100644
index 4891430fce..0000000000
--- a/cpukit/libnetworking/rtems/bootp.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/* Subroutines from cpukit/libnetworking/nfs/bootp_subr.c */
-
-#if !defined (__RTEMS_BOOTP_H__)
-#define __RTEMS_BOOTP_H__
-
-#include <stddef.h>
-#include <stdbool.h>
-
-#if __cplusplus
-extern "C"
-{
-#endif
-
-struct bootp_packet;
-struct proc;
-struct ifreq;
-struct socket;
-struct sockaddr_in;
-
-bool bootpc_init(bool, bool);
-
-int bootpc_call(
- struct bootp_packet *call,
- struct bootp_packet *reply,
- struct proc *procp,
- const void *exp_vend,
- size_t exp_vend_len);
-int bootpc_fakeup_interface(struct ifreq *ireq,
- struct socket *so,
- struct proc *procp);
-int bootpc_adjust_interface(struct ifreq *ireq,
- struct socket *so,
- struct sockaddr_in *myaddr,
- struct sockaddr_in *netmask,
- struct sockaddr_in *gw,
- struct proc *procp);
-
-void *bootp_strdup_realloc(char *dst, const char *src);
-
-#if __cplusplus
-}
-#endif
-
-#endif