1

I am doing an assignment where I have to make a simple HTTP 1.0 server.

I know that htm files has content-type text/html and jpg files has content-type image/jpeg

but what is the content-type if the file type is unknown?

Sam
  • 7,252
  • 16
  • 46
  • 65
user2661167
  • 491
  • 5
  • 13
  • 22
  • possible duplicate of [Unknown file type MIME?](http://stackoverflow.com/questions/1176022/unknown-file-type-mime) – Marc B Mar 23 '14 at 05:37

1 Answers1

2

You simply do not send the Content-Type header field.

Julian Reschke
  • 40,156
  • 8
  • 95
  • 98