Darin Fisher wrote: > Rohit Tripathi wrote: > >> Hi!, >> >> I posted this message to certain other groups where I didn't get >> useful responses. Perhaps you could help. >> >> I am working on a simple operating system that currently works by >> executing binary files. >> >> I am interested in building a web-browser for it, and since mozilla >> source code is easily accessible, it was a natural desire to modify it >> to suit my needs. >> >> The OS I am developing currently has no TCP/IP support. I do not know >> what changes must be made to mozilla source code to overcome this. How >> do I go about creating a TCP/IP stack for it? How does mozilla use the >> TCP/IP stack? >> >> sincerely, >> >> Rohit >> > > > mozilla uses the BSD socket API. > > darin >
i should have added... you will need to support the BSD socket API if you wish to use mozilla's networking code. or, you'd need to replace any BSD socket calls with socket calls of your own. darin
