Skip to content
Snippets Groups Projects
Select Git revision
  • d5e5e2a834a2f6766faa6f552fa85c86c2d17f79
  • master default protected
  • patch-2
  • patch-1
4 results

DuplicateUserException.java

Blame
  • Forked from Tim Miller / SWEN90006-A1-2019
    Source project has a limited visibility.
    http-response.c 395 B
    #include <errno.h>
    #include <stdbool.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <assert.h>
    #include "http-parser.h"
    #include "http-response.h"
    
    #define MAX_URL_SIZE 60
    #define MAX_HEADER_SIZE 300
    #define MAX_VERSION_SIZE 10
    
    Response* redirect(Request* request_message){
        
    }
    
    void free_response(Response* resp){
        free_hash_table(resp->header);
        free(resp);
    }