i want to write a program using multi-threading, raw sockets, to scan the ports in python i have a C code for injection of raw socket. i want to perform a ACK scan so need a raw socket.

So please help me.

thank you

link|improve this question

33% accept rate
Step 1. Search. Step 2. Read. Hint: stackoverflow.com/questions/tagged/python+c Also, this: stackoverflow.com/questions/tagged/python%20c%2b%2b – S.Lott Oct 19 '10 at 13:05
feedback

2 Answers

Please check out Cython. It makes it very easy to wrap C code.

This is adapted from the documentation on calling external C functions:

cdef extern from "math.h":
    double sin(double)

def pysin(x):
    return sin(x)

You could then call pysin from the compiled module like a normal Python module.

link|improve this answer
feedback

I would definitely go with boost.python, which provides even cleaner wrappers. If you dislike the idea of using C++, then Cython is a good alternative.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.