]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/kdp/kdp_udp.h
xnu-6153.61.1.tar.gz
[apple/xnu.git] / osfmk / kdp / kdp_udp.h
index 6c587d2746c252438b50991b8fdc121ae35ba983..eb551eff207f47541ba3524ceee1da9e5b4487cb 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (c) 2000-2013 Apple Inc. All rights reserved.
  *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
- * 
+ *
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
  * unlawful or unlicensed copies of an Apple operating system, or to
  * circumvent, violate, or enable the circumvention or violation of, any
  * terms of an Apple operating system software license agreement.
- * 
+ *
  * Please obtain a copy of the License at
  * http://www.opensource.apple.com/apsl/ and read it before using this file.
- * 
+ *
  * The Original Code and all software distributed under the License are
  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
@@ -22,7 +22,7 @@
  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
  * Please see the License for the specific language governing rights and
  * limitations under the License.
- * 
+ *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /*
 #include <stdint.h>
 
 struct kdp_in_addr {
-        uint32_t s_addr;
+       uint32_t s_addr;
 };
 
 #define ETHER_ADDR_LEN 6
 
 struct kdp_ether_addr {
-        u_char ether_addr_octet[ETHER_ADDR_LEN];
+       u_char ether_addr_octet[ETHER_ADDR_LEN];
 };
 
 typedef struct kdp_ether_addr enet_addr_t;
@@ -52,9 +52,9 @@ extern struct kdp_ether_addr kdp_get_mac_addr(void);
 unsigned int  kdp_get_ip_address(void);
 
 struct  kdp_ether_header {
-        u_char  ether_dhost[ETHER_ADDR_LEN];
-        u_char  ether_shost[ETHER_ADDR_LEN];
-        u_short ether_type;
+       u_char  ether_dhost[ETHER_ADDR_LEN];
+       u_char  ether_shost[ETHER_ADDR_LEN];
+       u_short ether_type;
 };
 
 typedef struct kdp_ether_header ether_header_t;
@@ -69,7 +69,7 @@ typedef struct kdp_ether_header ether_header_t;
  */
 typedef uint32_t (*kdp_link_t)(void);
 typedef boolean_t (*kdp_mode_t)(boolean_t);
-void   kdp_register_link(kdp_link_t link, kdp_mode_t mode);
-void   kdp_unregister_link(kdp_link_t link, kdp_mode_t mode);
+void    kdp_register_link(kdp_link_t link, kdp_mode_t mode);
+void    kdp_unregister_link(kdp_link_t link, kdp_mode_t mode);
 
 #endif /* __KDP_UDP_H */