Mercurial > pidgin.yaz
changeset 32006:fe1a13094237
Compile.
author | masca@cpw.pidgin.im |
---|---|
date | Tue, 04 Jan 2011 04:29:36 +0000 |
parents | 135868ec0aa9 |
children | ea3c7de5a07d |
files | libpurple/protocols/msn/p2p.h |
diffstat | 1 files changed, 13 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/msn/p2p.h Tue Jan 04 04:06:36 2011 +0000 +++ b/libpurple/protocols/msn/p2p.h Tue Jan 04 04:29:36 2011 +0000 @@ -57,30 +57,30 @@ typedef enum { - OP_NONE = 0x00; /**< None, Nothing required. */ - OP_SYN = 0x01; /**< SYN, just like TCP. */ - OP_RAK = 0x02; /**< Request for Ack. */ -} OpCode + OP_NONE = 0x00, /**< None, Nothing required. */ + OP_SYN = 0x01, /**< SYN, just like TCP. */ + OP_RAK = 0x02 /**< Request for Ack. */ +} OpCode; typedef enum { - TF_FIRST = 0x01; /**< The first package. */ - TF_OBJ = 0x04; /**< Payload contains binary data for MsnObject. */ - TF_FILE = 0x06; /**< Payload contains binary data. */ + TF_FIRST = 0x01, /**< The first package. */ + TF_OBJ = 0x04, /**< Payload contains binary data for MsnObject. */ + TF_FILE = 0x06 /**< Payload contains binary data. */ } TF; typedef enum { - TLP_PEER_INFO = 0x01; /**< Client peer info */ - TLP_ACK = 0x02; /**< ACK */ - TLP_NAK = 0x03; /**< NAK */ + TLP_PEER_INFO = 0x01, /**< Client peer info */ + TLP_ACK = 0x02, /**< ACK */ + TLP_NAK = 0x03 /**< NAK */ } TLP; typedef enum { - TLP_LEN_PEER_INFO = 12; - TLP_LEN_ACK = 4; - TLP_LEN_NAK = 4; + TLP_LEN_PEER_INFO = 12, + TLP_LEN_ACK = 4, + TLP_LEN_NAK = 4 } TLPLength; #define DLP_REMAINING 0x01; /**< Indicates the remaining data to transfer.*/