search for: ipcp

Displaying 20 results from an estimated 34 matches for "ipcp".

Did you mean: ipc
2016 May 04
3
status of IPO/IPCP?
...ling through the createXYZPass path. diff --git a/lib/Transforms/IPO/IPConstantPropagation.cpp b/lib/Transforms/IPO/IPConstantPropagation.cpp index b3ee499..8d70b98 100644 --- a/lib/Transforms/IPO/IPConstantPropagation.cpp +++ b/lib/Transforms/IPO/IPConstantPropagation.cpp @@ -253,7 +253,9 @@ char IPCP::ID = 0; INITIALIZE_PASS(IPCP, "ipconstprop", "Interprocedural constant propagation", false, false) -ModulePass *llvm::createIPConstantPropagationPass() { return new IPCP(); } +ModulePass *llvm::createIPConstantPropagationPass() { + llvm_unreachable("fn...
2003 Jun 30
1
Fw: VPN setup problem - proxy arp I think
...set iface disable on-demand set iface enable proxy-arp # set iface idle 1800 set bundle enable multilink set link yes acfcomp protocomp set link no pap chap set link enable chap # set link keep-alive 10 60 set link mtu 1260 set ipcp yes vjcomp # set ipcp ranges 10.77.1.1/32 10.77.1.50/32 # set ipcp dns 10.77.1.1 # set ipcp nbns 10.77.1.1 set bundle enable compression set ccp yes mppc set ccp yes mpp-e40 # set ccp yes mpp-e128 set ccp yes mpp-stateless client1: ne...
2016 May 03
2
status of IPO/IPCP?
The pass is pretty rudimental (as the comment at the top of the file hints), and it seems LLVM already has IPSCCP (which should do a better job at interprocedural constant propagation). I'm also not entirely sure it's used anywhere. Is there any reason to keep it around? Thanks, -- Davide "There are no solved problems; there are only problems that are more or less solved" --
2011 Apr 16
1
[LLVMdev] [Fwd: Re: [Fwd: Regarding Inter Procedural Constant Propagation]]
...wn below: #include <stdio.h> void f1(int a) { a=a+1; printf("%d",a); } void f2() { int b; b=1; f1(b); } int main() { int a=1; f2(); f1(a); } Also,when i use the following command: opt -print-after-all main.bc The dumps generated dont include IPCP or Intraprocedural Const Propagation dumps.Why so? Is there any other way to see the effect of a pass on the i/p bitcode file? Kindly let me know where i am going wrong. Netra, >> ---------------------------- Original Message ---------------------------- >> Subject: Regarding Inter...
2010 Jun 02
1
Regression of 5616?
I'm wondering if I'm seeing a regression of 5616 with 3.4.8. I'm trying to set-up pptpd with winbind, which I'm doing on two machines on Debian lenny, and I'm trying on Debian Squeeze now. The Windows client is saying "Error 778: It was not possible to verify the identity of the server." The logs say that everything is ok, and that the client is hanging up the
2011 Apr 12
0
[LLVMdev] Regarding Inter Procedural Constant Propagation
Hi, I want to see the output of a InterProcedural Constant Propagation Pass IPCP in llvm. I have llvm 2.8 installed.And i used opt -print-after-all command to see the .bc output generated after each pass. However,this does not include dump produced by IPCP :( why? Kindly tell me how to view dump produced by IPCP. P.S: i have tried opt -ipcp src.bc -o src1.bc However the src....
2001 Sep 01
0
Uneditted logfile for my ppp+tinc messup
...pppd[326]: sent [CHAP Response id=0xb8 <8ea2e7e5164653a50cb2b116cadaea2f>, name = "the_robster"] Sep 1 11:12:22 zeus pppd[326]: rcvd [LCP EchoRep id=0x0 magic=0x9ff05c93] Sep 1 11:12:22 zeus pppd[326]: rcvd [CHAP Success id=0xb8 ""] Sep 1 11:12:22 zeus pppd[326]: sent [IPCP ConfReq id=0x1f <addr 0.0.0.0> <compress VJ 0f 01> <ms-dns1 0.0.0.0> <ms-dns3 0.0.0.0>] Sep 1 11:12:22 zeus pppd[326]: sent [CCP ConfReq id=0xb <deflate 15> <deflate(old#) 15> <bsd v1 15>] Sep 1 11:12:22 zeus pppd[326]: rcvd [IPCP ConfReq id=0x1 <addr...
2005 Mar 10
0
pptpd
...100-110 196.22.35.1 is my public ip address on my firewall, eth0 ip address, also my lan ip adress. options.poptop looks like this: #ipparam PoPToP #dump #debug require-mschap-v2 require-mppe-128 require-mppe-stateless #login lock #mtu 1490 #mru 1490 ms-wins ms-dns 196.22.35.251 multilink proxyarp ipcp-accept-local ipcp-accept-remote lcp-echo-failure 30 lcp-echo-interval 5 deflate 0 When I start pptpd I get the following in /var/log/messages file: Mar 10 06:44:28 fw pptpd[31392]: MGR: Manager process started Mar 10 06:44:28 fw pptpd[31392]: MGR: Maximum of 10 connections available Mar 10 06:4...
2003 Jan 12
0
SV: [Gibraltar-list] help: vpn configuration
...e, it should look like this: Your_usrname * Your_password * That?s it :) But if that don?t work include this file to the list: /etc/ppp/pptpd-options It should look something like this: ipparam PoPToP lock mtu 1490 mru 1490 ms-wins 172.x.y.1 ms-dns 172.x.y.1 multilink proxyarp auth +chapms-v2 ipcp-accept-local ipcp-accept-remote lcp-echo-failure 30 lcp-echo-interval 5 deflate 0 # mppe-40 mppe-128 mppe-stateless Remember: if you want a higher encryption than mppe-40 you should make sure that your w2k client has installed sp2 or higher. Note: Your firewall has to accept both port 1723 and pr...
2006 Sep 03
0
[LLVMdev] llvm-gcc4: Enable various optimizations at -O1/-O2
...move unused fns and globs + PerModulePasses->add(createIPConstantPropagationPass());// IP Constant Propagation + PerModulePasses->add(createDeadArgEliminationPass()); // Dead argument elimination + PerModulePasses->add(createInstructionCombiningPass()); // Clean up after IPCP & DAE + PerModulePasses->add(createCFGSimplificationPass()); // Clean up after IPCP & DAE + PerModulePasses->add(createPruneEHPass()); // Remove dead EH info + + if (optimize > 1) { + PerModulePasses->add(createFunctionInliningPass()); // Inli...
2005 Aug 17
0
ppp winbind type 5 error
...CASA\\anapaula failed CHAP authentication sent [CHAP Failure id=0xc5 ""] sent [LCP TermReq id=0x4 "Authentication failed"] rcvd [LCP TermAck id=0x4 "Authentication failed"] Connection terminated. I'm using: Fedora 2.6.12-1.1398_FC4 ppp-2.4.3-5.fc4 options file: ipcp-accept-local ipcp-accept-remote ms-dns 192.168.99.1 ms-wins 192.168.99.4 noccp auth crtscts idle 1800 mtu 1410 mru 1410 nodefaultroute debug lock proxyarp connect-delay 5000 logfile /var/log/l2tpd.log plugin winbind.so ntlm_auth-helper "/usr/bin/ntlm_auth --helper-protocol=ntlm-server-1"...
2007 Apr 18
0
[Bridge] BCP code ported to pppd 2.4.2
...fig up" it. If the link goes down, the kernel should handle all cleanup, but pppd also calls /etc/ppp/eth-down in case you should find something you want to run at that time. Don't access the bcpX device from eth-down, as it is probably already gone. It should be possible to run BCP and IPCP (and other protocols) simultaneously, although we haven't tested it much because it seems silly. The options "noip", "nobcp", etc. are helpful to restrict the behavior of pppd. The pppd option "maclocal" will tell pppd what hardware address to assign bcpX. Wi...
2004 Jun 25
0
mpd configure and route issues
...#39;t. Either would be fine by me, but neither appears to work. The majority appear to just put the incoming IPs right in a range on their existing subnet, so I would assume that to be the standard method. So, let's say I want to put my incoming client at y.y.1.5, put this in my config: set ipcp ranges y.y.1.1/32 y.y.2.5/32 Now, y.y.1.1 is already the existing IP of this machine internally, and is now also going to be the termination point for the tunnel. Is this normal? It would appear to me that this could create conflict in routing. I tried making it y.y.1.2/32, no luck. Also, I wan...
2003 May 10
4
Down the MPD road
...what I'm running for an mpd.conf file. Both mpd.links and mpd.secret I'm guessing are okay due to their simplicity. ----------------------------------------------------------------------------- default: load pptp_client0 pptp_client0: new -i ng0 pptp0 pptp0 set ipcp ranges {InsideIF}/32 {AssignedIP}/25 set iface disable on-demand set iface enable proxy-arp set iface idle 3600 set bundle disable multilink set bundle enable compression set bundle yes crypt-reqd set link mtu 1440 set link no pap c...
2019 Mar 29
12
Proposal for O1/Og Optimization and Code Generation Pipeline
...code generation speed. Dead code elimination - Dead code elimination (ADCE, BDCE) - Dead store elimination - Parts of CFG Simplification - Removing branches and dead code paths and not including commoning and speculation Basic Scalar Optimizations - Constant propagation including SCCP and IPCP - Constant merging - Instruction Combining - Inlining: always_inline and normal inlining passes - Memory to register promotion - CSE of “unobservable” operations - Reassociation of expressions - Global optimizations - try to fold globals to constants Loop Optimizations Loop optimizations h...
2003 Mar 10
2
AOL on Linux
Hello. I am a newbie to wine. In my local area, the only way to have unmetered access to th internet is to use AOL. After some research on the internet, it gas come to light that some linux users have managed to install AOL's version 5.0 of their software to access AOL. Following these instructions, AOL5 is installed on my computer. The command "wine setup32.exe" was run. AOL5
2004 Sep 10
1
Using Samba over VPN - shares disconnect on Windows clients
I am running Poptop 1.1.4 VPN server, Samba 3.0.6, RH 9 (2.4.20-8 patched for mppe-mppc). When the end user connects via VPN, they can create a share to the samba shared folder that was created. When they clost the explorer window, then reopen the shared drive from the "My Computer" view, the share can not be re-opened with the error that the mapped drive is alreay in use. I have
2015 Feb 09
5
extlinux installer build failed
...p/src/netif/slipif.o lwip/src/netif/undiif.o lwip/src/netif/ethernetif.o lwip/src/netif/ppp/ppp_oe.o lwip/src/netif/ppp/ppp.o lwip/src/netif/ppp/magic.o lwip/src/netif/ppp/lcp.o lwip/src/netif/ppp/pap.o lwip/src/netif/ppp/chpms.o lwip/src/netif/ppp/randm.o lwip/src/netif/ppp/vj.o lwip/src/netif/ppp/ipcp.o lwip/src/netif/ppp/chap.o lwip/src/netif/ppp/fsm.o lwip/src/netif/ppp/md5.o lwip/src/netif/ppp/auth.o lwip/src/netif/etharp.o lwip/src/core/tcp.o lwip/src/core/init.o lwip/src/core/ipv4/autoip.o lwip/src/core/ipv4/icmp.o lwip/src/core/ipv4/ip_frag.o lwip/src/core/ipv4/ip_addr.o lwip/src/core/ipv4...
2015 Feb 09
0
extlinux installer build failed
.../src/netif/undiif.o > lwip/src/netif/ethernetif.o lwip/src/netif/ppp/ppp_oe.o > lwip/src/netif/ppp/ppp.o lwip/src/netif/ppp/magic.o > lwip/src/netif/ppp/lcp.o lwip/src/netif/ppp/pap.o > lwip/src/netif/ppp/chpms.o lwip/src/netif/ppp/randm.o > lwip/src/netif/ppp/vj.o lwip/src/netif/ppp/ipcp.o > lwip/src/netif/ppp/chap.o lwip/src/netif/ppp/fsm.o > lwip/src/netif/ppp/md5.o lwip/src/netif/ppp/auth.o > lwip/src/netif/etharp.o lwip/src/core/tcp.o lwip/src/core/init.o > lwip/src/core/ipv4/autoip.o lwip/src/core/ipv4/icmp.o > lwip/src/core/ipv4/ip_frag.o lwip/src/core/ipv4/ip_...
2007 Apr 18
7
[Bridge] (no subject)
Dear Sir, I was trying to install bridge as we are installing scps gateway in our testbed.This requires us to install the bridge. Our Linux version is 2.4.18 ~3 and we are using redhat 7.2 Please let me know which is the bridge I should install and how to configure it. Before configuring the bridge what I should check in my configuration. Thanks for your time, Sincerely Rama ===== I hear