Changes in common/Message.cpp [b53c6b3:8f438a5] in network-game
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/Message.cpp
rb53c6b3 r8f438a5 11 11 #endif 12 12 13 #include <iostream> 14 15 using namespace std; 16 13 17 int sendMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *dest) 14 18 { 15 return sendto(sock, (char*)msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)dest, sizeof(struct sockaddr_in)); 19 int ret = sendto(sock, (char*)msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)dest, sizeof(struct sockaddr_in)); 20 21 cout << "Sent message of type " << msg->type << endl; 22 23 return ret; 16 24 } 17 25 … … 21 29 22 30 // assume we don't care about the value of socklen 23 return recvfrom(sock, (char*)msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)dest, &socklen); 31 int ret = recvfrom(sock, (char*)msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)dest, &socklen); 32 33 if (ret > -1) 34 cout << "Received message of type " << msg->type << endl; 35 36 return ret; 24 37 }
Note:
See TracChangeset
for help on using the changeset viewer.