summaryrefslogtreecommitdiff
path: root/rtems/bootp.h
diff options
context:
space:
mode:
Diffstat (limited to 'rtems/bootp.h')
-rw-r--r--rtems/bootp.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/rtems/bootp.h b/rtems/bootp.h
new file mode 100644
index 0000000..4891430
--- /dev/null
+++ b/rtems/bootp.h
@@ -0,0 +1,44 @@
+/* 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