ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/network.h
(Generate patch)

Comparing deliantra/server/include/network.h (file contents):
Revision 1.36 by root, Wed Nov 14 23:24:27 2018 UTC vs.
Revision 1.37 by root, Sat Nov 17 23:33:18 2018 UTC

270 packet &operator <<(shstr_tmp sh) { return *this << data_n (sh); } 270 packet &operator <<(shstr_tmp sh) { return *this << data_n (sh); }
271 packet &operator <<(const std::string &s) { return *this << data_n (s.data (), s.size ()); } 271 packet &operator <<(const std::string &s) { return *this << data_n (s.data (), s.size ()); }
272 272
273 void vprintf (const char *format, va_list ap); 273 void vprintf (const char *format, va_list ap);
274 274
275 void printf (const char *format, ...) attribute ((format (printf, 2, 3))) 275 void printf (const char *format, ...) ecb_attribute ((format (printf, 2, 3)))
276 { 276 {
277 va_list ap; 277 va_list ap;
278 va_start (ap, format); 278 va_start (ap, format);
279 vprintf (format, ap); 279 vprintf (format, ap);
280 va_end (ap); 280 va_end (ap);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines