Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTTP POST Request functionality added #11

Closed
wants to merge 25 commits into from

Commits on Sep 3, 2024

  1. Configuration menu
    Copy the full SHA
    d6affe3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    49ab3dd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ca6c473 View commit details
    Browse the repository at this point in the history
  4. Implement cleanup

    lucabtz committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    3d1a183 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6a2eb88 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ef7260a View commit details
    Browse the repository at this point in the history
  7. Use keep-alive connections

    lucabtz committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    4a4f342 View commit details
    Browse the repository at this point in the history
  8. Merge pull request lil-skelly#9 from S0S4/http-download

    [SOLVED] Fixed the problem with chunk path
    lil-skelly authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    7a14810 View commit details
    Browse the repository at this point in the history
  9. Merge branch 'main' of https://github.com/lil-skelly/erebos into http…

    …-download
    
    Keep branch up to date with main to include crucial changes
    skelly committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    1ebfbda View commit details
    Browse the repository at this point in the history
  10. Minor changes: Removed unused code

    skelly committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    6c51a68 View commit details
    Browse the repository at this point in the history
  11. Removed example code and used the http_get function to request the in…

    …dex page of the server
    skelly committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    46c258d View commit details
    Browse the repository at this point in the history
  12. Merge branch 'http-download' of https://github.com/lil-skelly/erebos

    …into http-download
    skelly committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    06941b1 View commit details
    Browse the repository at this point in the history
  13. Modified server.py to use self.server.server_address to successfully …

    …generate the index links
    skelly committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    b0563ab View commit details
    Browse the repository at this point in the history
  14. Merge pull request lil-skelly#10 from ekardnam/implement-http-download

    Fix server not generating links properly (missing host) and moved definitions from http.c to http.h
    lil-skelly authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    122f94d View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. Added h_getnameinfo wrapper to fetch host name. Removed annoying debu…

    …g statement from http.c and used long instead of size_t for the content lengths
    skelly committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    3c9629d View commit details
    Browse the repository at this point in the history
  2. Merge branch 'http-download' of https://github.com/lil-skelly/erebos

    …into http-download
    
    Update local branch
    skelly committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    ac9def0 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'main' of https://github.com/lil-skelly/erebos into http…

    …-download
    skelly committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    d880428 View commit details
    Browse the repository at this point in the history
  4. Modified http.c

    skelly committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    6c3e4d7 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'main' of https://github.com/lil-skelly/erebos into http…

    …-download
    skelly committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    dec36a3 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'main' of https://github.com/lil-skelly/erebos into http…

    …-download
    skelly committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    c8d0f7f View commit details
    Browse the repository at this point in the history
  7. Modified client to now send the Host header with the host name of the…

    … server and now the server uses that header to generate the file links
    skelly committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    2408066 View commit details
    Browse the repository at this point in the history
  8. Revert "Modified client to now send the Host header with the host nam…

    …e of the server and now the server uses that header to generate the file links"
    
    While the approach works it introduces unneeded difficulties. Let's just go with the simpler approach
    This reverts commit 2408066.
    skelly committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    66899c3 View commit details
    Browse the repository at this point in the history
  9. Implemented http_download_data_to_file, added request field to the ht…

    …tp_res_t and used a different buffer to store the GET request. Finally added some basic logging in the http library,
    skelly committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    c360265 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c6cd536 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d6f91e9 View commit details
    Browse the repository at this point in the history