Skip to content

Commit

Permalink
Merge pull request #24 from rdkcentral/feature/23-protocol_t-datatype…
Browse files Browse the repository at this point in the history
…-conflict

Bug : #23 : Update platform_hal.h
  • Loading branch information
GoutamD2905 authored Nov 29, 2024
2 parents 640265f + c975f00 commit 7abaf4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/platform_hal.h
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,7 @@ typedef enum {
typedef enum {
PROTOCOL_TCP, /**< Transmission Control Protocol (TCP) */
PROTOCOL_UDP /**< User Datagram Protocol (UDP) */
} protocol_t;
} net_proto_t;

/**
* @brief Structure representing network parameters for QoS and traffic management.
Expand Down Expand Up @@ -1535,7 +1535,7 @@ typedef struct {
* Specifies the transport layer protocol used for the network communication,
* such as TCP or UDP.
*/
protocol_t protocol; /**< Transport protocol (TCP or UDP). */
net_proto_t protocol; /**< Transport protocol (TCP or UDP). */

/**
* @brief Differentiated Services Code Point (DSCP) Value for QoS.
Expand Down

0 comments on commit 7abaf4c

Please sign in to comment.