char tag[11]; /*!< Our tag for this session */
int sessionid; /*!< SDP Session ID */
int sessionversion; /*!< SDP Session Version */
- int sessionversion_remote; /*!< Remote UA's SDP Session Version */
+ uint64_t sessionversion_remote; /*!< Remote UA's SDP Session Version */
int session_modify; /*!< Session modification request true/false */
struct sockaddr_in sa; /*!< Our peer */
struct sockaddr_in redirip; /*!< Where our RTP should be going if not to us */
int last_rtpmap_codec=0;
char buf[SIPBUFSIZE];
- int rua_version;
+ uint64_t rua_version;
int red_data_pt[10];
int red_num_gen = 0;
ast_log(LOG_WARNING, "SDP syntax error in o= line\n");
return -1;
}
- if (!sscanf(token, "%d", &rua_version)) {
+ if (!sscanf(token, "%lu", &rua_version)) {
ast_log(LOG_WARNING, "SDP syntax error in o= line version\n");
return -1;
}