====== dynamicsquid ====== Yay, I finally managed to instrument Squid, the webproxy found at: http://wiki.squid-cache.org/FrontPage. This is for my thesis, where I implement Dynamic Aspects in C++. Now for the loading of dynamic aspects.. Update: The first dynamic aspect works! :) Here is the sourcecode of the aspect: #include aspect DynamicTracer { advice execution("% ...::Http%::%(...)") : before() { std::cout << "now running: " << JoinPoint::signature() << std::endl; } }; {{tag>tech uni english aop}} ~~DISCUSSION~~