projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added class specific descriptor type defines with standard USB-IF element naming.
[pub/USBasp.git]
/
Demos
/
Device
/
ClassDriver
/
RNDISEthernet
/
Lib
/
UDP.h
diff --git
a/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h
b/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h
index
73f7664
..
57abd0d
100644
(file)
--- a/
Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h
+++ b/
Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h
@@
-45,14
+45,14
@@
#include "DHCP.h"
/* Macros: */
#include "DHCP.h"
/* Macros: */
- /** Source UDP port for a DHCP request */
+ /** Source UDP port for a DHCP request
.
*/
#define UDP_PORT_DHCP_REQUEST 67
#define UDP_PORT_DHCP_REQUEST 67
- /** Destination UDP port for a DHCP reply */
+ /** Destination UDP port for a DHCP reply
.
*/
#define UDP_PORT_DHCP_REPLY 68
/* Type Defines: */
#define UDP_PORT_DHCP_REPLY 68
/* Type Defines: */
- /** Type define for a UDP packet header */
+ /** Type define for a UDP packet header
.
*/
typedef struct
{
uint16_t SourcePort; /**< Packet source port */
typedef struct
{
uint16_t SourcePort; /**< Packet source port */
@@
-62,6
+62,8
@@
} UDP_Header_t;
/* Function Prototypes: */
} UDP_Header_t;
/* Function Prototypes: */
- int16_t UDP_ProcessUDPPacket(void* IPHeaderInStart, void* UDPHeaderInStart, void* UDPHeaderOutStart);
+ int16_t UDP_ProcessUDPPacket(void* IPHeaderInStart,
+ void* UDPHeaderInStart,
+ void* UDPHeaderOutStart);
#endif
#endif