mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-15 07:41:45 +00:00
Minor edits
This commit is contained in:
parent
224529d8dd
commit
13dbf5494d
@ -75,7 +75,7 @@ struct udp_operations {
|
||||
*/
|
||||
struct udp_connection {
|
||||
/** Address of the remote end of the connection */
|
||||
struct sockaddr sin;
|
||||
struct sockaddr sa;
|
||||
/** Local port on which the connection receives packets */
|
||||
port_t local_port;
|
||||
/** Transmit buffer */
|
||||
|
@ -65,7 +65,7 @@ void udp_dump ( struct udp_header *udphdr ) {
|
||||
* This function stores the socket address within the connection
|
||||
*/
|
||||
void udp_connect ( struct udp_connection *conn, struct sockaddr *peer ) {
|
||||
copy_sockaddr ( peer, &conn->sin );
|
||||
copy_sockaddr ( peer, &conn->sa );
|
||||
|
||||
/* Not sure if this should add the connection to udp_conns; If it does,
|
||||
* uncomment the following code
|
||||
@ -142,8 +142,15 @@ int udp_sendto ( struct udp_connection *conn, struct sockaddr *peer,
|
||||
udphdr->dest_port = *dest;
|
||||
udphdr->source_port = conn->local_port;
|
||||
udphdr->len = htons ( pkb_len ( conn->tx_pkb ) );
|
||||
udphdr->chksum = htons ( calc_chksum ( udphdr, sizeof ( *udphdr ) ) );
|
||||
/**
|
||||
* Calculate the partial checksum. Note this is stored in host byte
|
||||
* order.
|
||||
*/
|
||||
udphdr->chksum = calc_chksum ( udphdr, sizeof ( *udphdr ) + len );
|
||||
|
||||
/**
|
||||
* Dump the contents of the UDP header
|
||||
*/
|
||||
udp_dump ( udphdr );
|
||||
|
||||
/* Send it to the next layer for processing */
|
||||
@ -158,7 +165,7 @@ int udp_sendto ( struct udp_connection *conn, struct sockaddr *peer,
|
||||
* @v len Length of data
|
||||
*/
|
||||
int udp_send ( struct udp_connection *conn, const void *data, size_t len ) {
|
||||
return udp_sendto ( conn, &conn->sin, data, len );
|
||||
return udp_sendto ( conn, &conn->sa, data, len );
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user