Re: [Interest] Klocwork error in Qt5 concurrentwrapper

2020-05-30 Thread Thiago Macieira
On Saturday, 30 May 2020 11:03:57 PDT Ramakanth Kesireddy wrote: > Void function returns value VOIDRET pointing to the below code in > qtbase/src/concurrent/qtconcurrentfunctionwrappers.h. > > template > inline void operator()(C &c, U &&u) const > { > return c.push_back(u); >

[Interest] Klocwork error in Qt5 concurrentwrapper

2020-05-30 Thread Ramakanth Kesireddy
Hi , Below is the Klocwork error thrown while using Qt5 with the application code: Void function returns value VOIDRET pointing to the below code in qtbase/src/concurrent/qtconcurrentfunctionwrappers.h. template inline void operator()(C &c, U &&u) const { return c.push_back(u);

Re: [Interest] How to send an arbitrary file over sockets

2020-05-30 Thread Thiago Macieira
On Saturday, 30 May 2020 02:03:00 PDT Ghobad Zarrinchian wrote: > Now, I know that i should separate my file into multiple parts and send > each part separately. I recently experienced sending several messages using > consecutive write commands, like below: > > socket.write(data1); > socket.write(

Re: [Interest] How to send an arbitrary file over sockets

2020-05-30 Thread Ghobad Zarrinchian
Thanks for all responses. Now, I know that i should separate my file into multiple parts and send each part separately. I recently experienced sending several messages using consecutive write commands, like below: socket.write(data1); socket.write(data2); socket.write(data3); ... However, the re