Searched refs:http_conn (Results 1 - 5 of 5) sorted by relevance

/barrelfish-master/usr/webserver/
H A Dhttp_cache.h20 errval_t http_cache_lookup (const char *name, struct http_conn *cs);
22 long decrement_reference (struct http_conn *cs);
H A Dwebserver_session.h35 struct http_conn { struct
56 void (*callback) (struct http_conn *);
59 struct http_conn *next; /* for making the linked list */
63 errval_t http_fetch_file(const char *name, struct http_conn *cs);
64 long decrement_http_conn_reference (struct http_conn *cs);
65 long increment_http_conn_reference (struct http_conn *cs);
H A Dhttp_server.c110 static struct http_conn *http_conn_new(void)
112 struct http_conn *newconn = malloc(sizeof(struct http_conn));
114 memset (newconn, 0, sizeof(struct http_conn));
119 DEBUGPRINT ("%d: http_conn created [p %d] %lu %lu\n", newconn->request_no,
126 static void http_conn_free(struct http_conn *conn)
141 long increment_http_conn_reference (struct http_conn *cs)
147 /* This function decrements the references to http_conn
149 long decrement_http_conn_reference (struct http_conn *cs)
160 } /* end if : invalid http_conn */
[all...]
H A Dhttp_cache.c56 struct http_conn *conn; /* list of connections waiting for data */
57 struct http_conn *last; /* for quick insertions at end */
151 static void add_connection(struct http_cache_entry *e, struct http_conn *cs)
219 static void trigger_callback (struct http_conn *cs, struct http_cache_entry *e)
223 /* This http_conn is not good anymore (most probably, it received RST)*/
237 /* send callback for each pending http_conn */
240 struct http_conn *cs = NULL;
241 struct http_conn *next_cs = NULL;
419 errval_t http_cache_lookup (const char *name, struct http_conn *cs)
/barrelfish-master/usr/ramfsd/
H A Dwebserver_session.h41 struct http_conn { struct
61 void (*callback) (struct http_conn *);
64 struct http_conn *next; /* for making the linked list */
68 err_t http_fetch_file(const char *name, struct http_conn *cs);
69 long decrement_http_conn_reference (struct http_conn *cs);
70 long increment_http_conn_reference (struct http_conn *cs);

Completed in 39 milliseconds