comparison libpurple/protocols/simple/simple.h @ 21024:61a87e02da29

Some constification, which also found and fixed some potential double-free errors.
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 27 Oct 2007 13:12:27 +0000
parents 6e93a79b2ae5
children b2d9f859663e
comparison
equal deleted inserted replaced
21022:3f8b32a4786c 21024:61a87e02da29
125 struct transaction { 125 struct transaction {
126 time_t time; 126 time_t time;
127 int retries; 127 int retries;
128 int transport; /* 0 = tcp, 1 = udp */ 128 int transport; /* 0 = tcp, 1 = udp */
129 int fd; 129 int fd;
130 gchar *cseq; 130 const gchar *cseq;
131 struct sipmsg *msg; 131 struct sipmsg *msg;
132 TransCallback callback; 132 TransCallback callback;
133 }; 133 };
134 134
135 #endif /* _PURPLE_SIMPLE_H */ 135 #endif /* _PURPLE_SIMPLE_H */