Changeset 61d2eabb
- Timestamp:
- 2013-02-14T15:20:00Z (12 years ago)
- Branches:
- master
- Children:
- 33ed455
- Parents:
- b6ab05b
- git-author:
- Mike Kazantsev <mk.fraggod@…> (14-02-13 15:20:00)
- git-committer:
- Miklos Vajna <vmiklos@…> (14-02-13 15:20:00)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/skype/skype.c
rb6ab05b r61d2eabb 29 29 #define SKYPE_DEFAULT_SERVER "localhost" 30 30 #define SKYPE_DEFAULT_PORT "2727" 31 #define IRC_LINE_SIZE 1 02431 #define IRC_LINE_SIZE 16384 32 32 #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) 33 33 … … 1147 1147 /* Read the whole data. */ 1148 1148 st = ssl_read(sd->ssl, buf, sizeof(buf)); 1149 if (st >= IRC_LINE_SIZE-1) { 1150 /* As we don't buffer incoming data, if IRC_LINE_SIZE amount of bytes 1151 * were received, there's a good chance last message was truncated 1152 * and the next recv() will yield garbage. */ 1153 imcb_error(ic, "Unable to handle incoming data from skyped"); 1154 st = 0; 1155 } 1149 1156 if (st > 0) { 1150 1157 buf[st] = '\0';
Note: See TracChangeset
for help on using the changeset viewer.