Re: [users@httpd] Need Open SSL

2015-10-06 Thread Yann Ylavic
Hello, you can download binaries for Windows by following: http://httpd.apache.org/docs/current/platform/windows.html#down Regards, Yann. On Tue, Oct 6, 2015 at 8:52 AM, Mahendiran Vel wrote: > Hi All, > > I'm going to use Apache openssl to my project(windows Server). when

[users@httpd] Need Open SSL

2015-10-06 Thread Mahendiran Vel
Hi All, I'm going to use Apache openssl to my project(windows Server). when i verify Apache site i could not find openssl.msi file . please share the URL to download .msi files else please suggest me a alternate way to get it. Note: Planning to use 2.2.25 openssl.msi -- Regards, Mahendiran

Re: [users@httpd] Need Open SSL

2015-10-06 Thread Mahendiran Vel
Hi Yaan, Thanks for your valuable help. On Tue, Oct 6, 2015 at 12:38 PM, Yann Ylavic wrote: > Hello, > > you can download binaries for Windows by following: > http://httpd.apache.org/docs/current/platform/windows.html#down > > Regards, > Yann. > > > On Tue, Oct 6, 2015 at

[users@httpd] a newbie question: Share custom Data between modules

2015-10-06 Thread Suat Furkan Kahya
i have a struct and 2 modules typedef struct person{ char *name; int id; };Person 1-mod_person_adder -> add new person to system. 2-mod_person_counter -> counts total person number in system. let say i allocate memory using mod_person_adder module

Re: [users@httpd] a newbie question: Share custom Data between modules

2015-10-06 Thread Kurtis Rader
On Tue, Oct 6, 2015 at 4:08 PM, Suat Furkan Kahya wrote: > i have a struct and 2 modules > > typedef struct person{ > >char *name; > int id; > };Person > > 1-mod_person_adder -> add new person to system. > 2-mod_person_counter -> counts total