DDD
DDD

Reputation: 1

Isapi filter to apache module

How to convert isapi filter(c++) to an apache module(c for Linux).Could you provide some code or link please.

Upvotes: 0

Views: 457

Answers (1)

Lex Li
Lex Li

Reputation: 63123

IIS has different extension API from Apache, so there is no easy way to convert an ISAPI filter to Apache module.

All you could do is to learn how to extend Apache and manually rewrite the code.

Upvotes: 2

Related Questions