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