similar to: multiple providers

Displaying 20 results from an estimated 1000 matches similar to: "multiple providers"

2005 Feb 03
3
bandwidth for each individual IP
Hello! I''m using a Slackware Linux as a router and 50 IP addresses for my LAN Clients. Is there any program i can install that will be able to tell me: how much (ie. kbps) each individual IP is using at moment t?
2004 Jun 16
7
Trafic monitor
Hello ! I use Slackware Linux on a box for routing and SNAT for a small network: |eth0: 80.97.108.1| | | |eth1: 192.168.1.1| ..........| my network (192.168.1.0/24)| I search for a tool show-me on real time the trafic made by all/one IPon the interface eth1, somethings simple ; EX: 192.168.1.10 ........... x kbit/s 192.168.1.11 ........... y kbit/s 192.168.1.12
2004 Nov 22
2
realtime trafic monitor
ok .. a use iptraf, but iptraf show my evry connection from computerX: 84.135.15.81:4899 > 163 7940 --A- eth0 ? 82.77.210.7:3475 > 212 323323 -PA- eth0 ? 62.231.96.133:80
2011 Jan 16
3
tcptrack for Centos 5.5 32bit rpm
Hi list. I have rebuilt tcptrack now. You can get it from here: http://www.karsites.net/centos/downloads/5.5/tcptrack-1.3.0-1.el5.i386.rpm It's not signed, so to install it with yum as root user, do: # yum localinstall --nogpgcheck tcptrack-1.3.0-1.el5.i386.rpm in the directory you d/l it to. Kind Regards, Keith Roberts -----------------------------------------------------------------
2012 Jul 09
1
tcptrack
Does anybody have a working version of tcptrack running on Centos 6 x64? The rpmforge rpm installs and runs on the -t eth# command, but if you add a port to it, it bombs with a pcap compile error. It runs fine for me on Centos 5 x64, but seems to have what looks like an old bug reintroduced in 6. -- John Hinton 877-777-1407 ext 502 http://www.ew3d.com Comprehensive Online Solutions
2010 Mar 26
2
need help on setup rtp directly between 2 sip clients
Hi all my asterisk server, 2 sip client softphones are the same LAN asterisk ip address : 192.168.1.5 sip client 1 : 192.168.1.4 sip client 2 : 192.168.1.2 asterisk starts ok with sip setup the sip.conf [test] type=friend username=test secret=1000 host=dynamic context=cucku directmedia=yes directrtpsetup=yes [1000] type=friend username=1000 secret=1000 host=dynamic context=cucku
2014 Apr 09
2
I can't make outbound calls (status is 'CHANUNAVAIL')
Hello: I have this situation: I can make calls internally, I can make inbound calls but I can't make outbound calls. Thanks in advance. These are my devices: * asterisk 11.8.1 = 192.168.1.22 * sipphone grandstream gxp2160 = 192.168.1.5 * gateway audiocodes mp-114 2fxs-2fxo = 192.168.1.4 port 1 (FXS) connected to an analog phone port 3 (FXO) connected to the PSTN These are my
2013 May 02
2
[LLVMdev] int to StringRed conversion
I think the better solution should be: LLVMContext& C = is->getContext(); Value *values[] = { ConstantInt::getSigned(Type::getInt64Ty(C), *scsr*), MDString::get(C, *"path"*) }; lnstr.setMetadata(*"your_analysis_name"*, MDNode::get(C, values)); So that you can take advantage of the type system of LLVM bitcode, and don't have to cast the integers from/to strings
2013 Jun 25
4
[LLVMdev] get value
Hi Cristianno, Thank you, it works :) with an extra cast:                                     Value *v ......                                     ConstantInt* RR = (ConstantInt *)v;                                     uint64_t VV = (RR->getValue()).getLimitedValue();                                     errs()<<"\nRR  "<<VV<<"\n";
2012 Dec 20
2
[LLVMdev] LLVM segmentation fault / need use Instruction instead of Instruction*
Hello, Thank you for your answer. If I want to use then I have error: ‘NodeTy* llvm::ilist_half_node<NodeTy>::getPrev() [with NodeTy = llvm::Instruction]’ is protected error: ‘llvm::ilist_half_node<llvm::Instruction>’ is not an accessible base of ‘llvm::Instruction’ Do you know any other method to access the previous instruction of a terminator instruction? PS: back() is not an
2013 Jun 06
3
[LLVMdev] CFG of a function
I think I understood that, but what I mean is what is the function responsible to do mapping is it MapValue() in ValueMapper.h? Thanks for your help On 6 June 2013 09:54, Alexandru Ionut Diaconescu < alexandruionutdiaconescu at gmail.com> wrote: > Map every basic block from the CFG to a set of integers. The successors > from the CFG can be used to make the edges in your simplified
2012 Dec 20
1
[LLVMdev] LLVM segmentation fault / need use Instruction instead of Instruction*
I solved by checking if(BB->size()>1) Thank you all for the help ! Now debugging the next segfault. On Thu, Dec 20, 2012 at 12:59 PM, Alexandru Ionut Diaconescu < alexandruionutdiaconescu at gmail.com> wrote: > getPrevNode<http://llvm.org/docs/doxygen/html/classllvm_1_1ilist__node.html#a77b897207ef0a1ae95c404695aed9a4b>() > Get the previous node, or 0 for the list
2013 Feb 27
3
[LLVMdev] llvm get annotations
Hello everyone ! I followed http://stackoverflow.com/questions/4976298/modern-equivalent-of-llvm-annotationmanagerin order to get annotations from my target bytecode. All the examples that I give in the following is related to the code from that link. I have `__attribute__((annotate("DS"))) int f=0;` into the target C++ program and the related IR code: @.str = private unnamed_addr
2013 May 02
0
[LLVMdev] int to StringRed conversion
Yes, it sounds good. I can try tomorrow. Thank you for your advice ! On Thu, May 2, 2013 at 5:43 PM, Logan Chien <tzuhsiang.chien at gmail.com>wrote: > I think the better solution should be: > > > LLVMContext& C = is->getContext(); > Value *values[] = { > ConstantInt::getSigned(Type::getInt64Ty(C), *scsr*), > MDString::get(C, *"path"*) > };
2013 Jun 05
2
[LLVMdev] CFG of a function
What do you mean by mapping to integers? On 5 June 2013 22:32, Alexandru Ionut Diaconescu < alexandruionutdiaconescu at gmail.com> wrote: > Why you don't map the basic blocks to integers and apply algorithms on the > integer graph? And construct your new CFG. > > > On Wed, Jun 5, 2013 at 10:27 PM, Rasha Omar <rasha.sala7 at gmail.com> wrote: > >> How
2013 May 02
4
[LLVMdev] int to StringRed conversion
Hello everyone, I have an integer and I want to convert it to StringRef in order to set metadata. setMetadata->(StringRef, MDNode*); It is there a native LLVM way to do it? 1. In the llvm::APSInt Class is toString() method, which seems it is not for this purpose 2. itoa and string are not part of LLVM 3. stringstream is not part of LLVM 4. to_string is not part of LLVM 5. any casting method?
2012 Dec 20
0
[LLVMdev] LLVM segmentation fault / need use Instruction instead of Instruction*
getPrevNode<http://llvm.org/docs/doxygen/html/classllvm_1_1ilist__node.html#a77b897207ef0a1ae95c404695aed9a4b>() Get the previous node, or 0 for the list head. I don't see any method like hasPrevNode. It can be a weird problem because "current->getPrevNode()" is indicating to "current" itself (the problem appears for the BB with only one element)? On Thu, Dec
2013 Jun 07
1
[LLVMdev] CFG of a function
But I don't want to map only basic blocks, I need too to map the edges "the whole CFG of the function" Save the CFG of the function in another memory address and call it for example orgCFG and change the CFG by referencing to the orgCFG Thank you for help and patience On 6 June 2013 10:59, Alexandru Ionut Diaconescu < alexandruionutdiaconescu at gmail.com> wrote: > I
2013 Mar 01
1
[LLVMdev] llvm get annotations
Hi, I solved it. From the ConstantStruct you can call getOperand() multiple times, so "mine" as deep as you can. On Fri, Mar 1, 2013 at 1:41 PM, Alexandru Ionut Diaconescu < alexandruionutdiaconescu at gmail.com> wrote: > > Hi Sebastian, > > Thanks for the response. > > I already did this : > > I cast the entire annotated expression to Value*. Then, in
2013 Jun 06
0
[LLVMdev] CFG of a function
I don't use a function for do the mapping, it may be MapValue(). If it does not work, alias an int identifier for each basic block. Be aware because basic block cannot have the same name (getName) in the same function, but they might have the same name being in different functions. Therefore, take into account the function name as well. Good luck On Thu, Jun 6, 2013 at 10:55 AM, Rasha Omar