Communities

Total Articles 180
No.
Subject
Author
140 How to call a constructor on a already allocated memory file
[Level:16]gilgil
113763   Feb 22, 2014
[Source] #include <new> #include <VInt> #include <VDebugNew> class MyObj { public: VInt i; public: MyObj() { printf("MyObj::MyObj\n"); } virtual ~MyObj() { printf("MyObj::~MyObj\n"); } void foo() { printf("MyObj::foo...  
139 Dunkin' Donuts DDoS Attack movie
[Level:16]gilgil
110944   Jan 05, 2010
terrible :)  
138 How to pass std::string as default parameter 1
[Level:16]gilgil
107413   Oct 18, 2011
When passing std::string is passed, object is copied through a stack. void loadFromFile(std::st-ring fileName); So, parameter is passed in reference type to prevent object copy load in the stack. void loa...  
137 When is the object VMT pointer changed in constructor and destructor? 3 file
[Level:16]gilgil
107134   Oct 12, 2011
[Question] Suppose that C is inherited from B and B is inherited from A. Each class has virtual function(destructor and foo). This means that all classed have their own VMT(VMT for A, VMT for B...  
136 The static object difference between local and global file
[Level:16]gilgil
106736   Nov 21, 2013
[LocalObject] class LocalObject { static LocalObject& instance(); }; LocalObject& LocalObject::instanc-e() { static LocalObject localObject; // declared as local // --- (1) --- return localObject; // --- (2) --- } ---...  
135 How to measure time difference
[Level:16]gilgil
106733   Aug 10, 2011
[Windows] #include <windows.h> DWORD begTick = GetTickCount(); foo(); DWORD endTick = GetTickCount(); printf("%d\n", endTick - begTick); [Linux] #include <sys/time.h> struct timeval begTick; gettimeofday(&begTic...  
134 [android] How to Build and Use libnetfilter_queue for Android
[Level:16]gilgil
104739   Nov 01, 2014
http://www.roman10.n-et/how-to-build-and-use-libnetfilter_queue-for-android/  
133 boost serialize example file
[Level:16]gilgil
104024   Jun 10, 2011
Person.h #ifndef PersonH #define PersonH #include <string> // for std::string #include <boost/serialization/-access.hpp> class Person { public: Person(); public: int age; bool sex; std::string name; private: friend class ...  
132 [network] snort and suricata file
[Level:16]gilgil
103864   Aug 27, 2016
snort_and_suricata(2-016.08.27).odp snort_and_suricata(2-016.08.27).ppt  
131 Distinguish default , explicit and copy constructor and assign operator file
[Level:16]gilgil
103459   Sep 12, 2011
[Class] class String { public: // // constructor // String() { cout << "constructor()\n"; } // default constructor String(char* p) { cout << "constructor(char*)\n"; } // explicit constructor String(const char* p)...  
130 How to get best adapter in winpcap automatically file
[Level:16]gilgil
102981   Mar 24, 2010
Whenever you use WinPcap, you are forced to select a specific network adapter to capture packets. This sample shows you how to select the best network adapter automatically by using "GetBestInteface"-; win...  
129 Network Device Icon ( iconworld_ppt_090313.ppt ) file
[Level:16]gilgil
101736   Jun 18, 2010
from : Siemens  
128 [qt][android] Getting Started with Qt for Android
[Level:16]gilgil
101127   Oct 22, 2014
http://qt-project.org/doc/qt-5/androidgs.html  
127 Add make option in bashrc file(Ubuntu)
[Level:16]gilgil
97968   Aug 08, 2011
In linux, when you make cpp project, you might have a case that you are always forced to set default include path and default library path. This is a quick tip for you to solve this problem. original ...  
126 Find a bug why run time error occurs. 5 file
[Level:16]gilgil
97484   Sep 13, 2011
[Quiz] Find a bug why run time error occurs. [Source] #include <iostream> #include <string> using namespace std; #define SAFE_DELETE(A) { if(A != NULL) { delete (A); A = NULL; } } class MyString { public: ...  
125 malicious site list
[Level:16]gilgil
96535   May 08, 2013
http://www.selectrea-lsecurity.com/public--block-lists http://www.malwaredo-mainlist.com/hostsli-st/hosts.txt http://www.malwaredo-mains.com/?page_id=66 http://mirror1.malwa-redomains.com/files/-domains.txt http://mirror1.malwa-redomains.com/files/-...  
124 Default STL Allocator
[Level:16]gilgil
94064   Aug 15, 2011
template<typename T> struct Allocator : public std::allocator<T> { Allocator() { } template<class Other> Allocator( const Allocator<Other>& _Right ) { } inline typename std::allocator<T>::pointer allocate(t...  
123 C++ Permutation Template Class file
[Level:16]gilgil
91498   Jan 20, 2012
[Permutation.h] // ---------------------------------------------------------------------------- // // Permutation Template Class Library // // http://www.gilgil.ne-t // // Copyright (c) Gilbert Lee All rights reserved // // -----------------...  
122 [network] how to save a new file when tcpdump file size reaches 10Mb
[Level:16]gilgil
91475   Jul 02, 2017
https://stackoverflo-w.com/questions/2156-7963/how-to-save-a-new-file-when-tcpdum-file-size-reaches-10mb tcpdump -W 5 -C 10 -w capfile What the above command does is create a rotating buffer of 5 files (-W 5) and tcpdump...  
121 [Qt] QByteArray setRawData example file
[Level:16]gilgil
91381   Feb 17, 2014
QByteArray & QByteArray::setRawDa-ta ( const char * data, uint size )Resets the QByteArray to use the first size bytes of the data array. The bytes are not copied. The QByteArray will contain ...  


XE Login