| /mOS-networking-stack/samples/lighttpd-1.4.32/src/ |
| H A D | SConscript | 42 'mod_access' : { 'src' : [ 'mod_access.c' ] }, 43 'mod_alias' : { 'src' : [ 'mod_alias.c' ] }, 44 'mod_cgi' : { 'src' : [ 'mod_cgi.c' ] }, 46 'mod_scgi' : { 'src' : [ 'mod_scgi.c' ] }, 51 'mod_setenv' : { 'src' : [ 'mod_setenv.c' ] }, 54 'mod_proxy' : { 'src' : [ 'mod_proxy.c' ] }, 66 'src' : [ 'mod_auth.c', 'http_auth.c' ], 84 staticsrc = src + common_src 89 staticsrc += modules[module]['src'] 96 ## turn all src-files into objects [all …]
|
| H A D | data_string.c | 9 data_string *src = (data_string *)s; in data_string_copy() local 12 buffer_copy_string_buffer(ds->key, src->key); in data_string_copy() 13 buffer_copy_string_buffer(ds->value, src->value); in data_string_copy() 14 ds->is_index_key = src->is_index_key; in data_string_copy() 35 static int data_string_insert_dup(data_unset *dst, data_unset *src) { in data_string_insert_dup() argument 37 data_string *ds_src = (data_string *)src; in data_string_insert_dup() 46 src->free(src); in data_string_insert_dup() 51 static int data_response_insert_dup(data_unset *dst, data_unset *src) { in data_response_insert_dup() argument 53 data_string *ds_src = (data_string *)src; in data_response_insert_dup() 64 src->free(src); in data_response_insert_dup()
|
| H A D | data_count.c | 8 data_count *src = (data_count *)s; in data_count_copy() local 11 buffer_copy_string_buffer(ds->key, src->key); in data_count_copy() 12 ds->count = src->count; in data_count_copy() 13 ds->is_index_key = src->is_index_key; in data_count_copy() 33 static int data_count_insert_dup(data_unset *dst, data_unset *src) { in data_count_insert_dup() argument 35 data_count *ds_src = (data_count *)src; in data_count_insert_dup() 39 src->free(src); in data_count_insert_dup()
|
| H A D | buffer.c | 159 if (!src) return -1; in buffer_copy_string_buffer() 165 return buffer_copy_string_len(b, src->ptr, src->used - 1); in buffer_copy_string_buffer() 235 return buffer_append_string_len(b, src->ptr, src->used - 1); in buffer_append_string_buffer() 880 const char *src; in buffer_urldecode_internal() local 904 src += 2; in buffer_urldecode_internal() 908 *dst = *src; in buffer_urldecode_internal() 912 src++; in buffer_urldecode_internal() 947 if (src == NULL || src->ptr == NULL || dest == NULL) in buffer_path_simplify() 950 if (src == dest) in buffer_path_simplify() 955 walk = src->ptr; in buffer_path_simplify() [all …]
|
| H A D | data_integer.c | 8 data_integer *src = (data_integer *)s; in data_integer_copy() local 11 buffer_copy_string_buffer(ds->key, src->key); in data_integer_copy() 12 ds->is_index_key = src->is_index_key; in data_integer_copy() 13 ds->value = src->value; in data_integer_copy() 33 static int data_integer_insert_dup(data_unset *dst, data_unset *src) { in data_integer_insert_dup() argument 36 src->free(src); in data_integer_insert_dup()
|
| H A D | data_array.c | 8 data_array *src = (data_array *)s; in data_array_copy() local 11 buffer_copy_string_buffer(ds->key, src->key); in data_array_copy() 13 ds->value = array_init_array(src->value); in data_array_copy() 14 ds->is_index_key = src->is_index_key; in data_array_copy() 35 static int data_array_insert_dup(data_unset *dst, data_unset *src) { in data_array_insert_dup() argument 38 src->free(src); in data_array_insert_dup()
|
| H A D | data_fastcgi.c | 9 data_fastcgi *src = (data_fastcgi *)s; in data_fastcgi_copy() local 12 buffer_copy_string_buffer(ds->key, src->key); in data_fastcgi_copy() 13 buffer_copy_string_buffer(ds->host, src->host); in data_fastcgi_copy() 14 ds->is_index_key = src->is_index_key; in data_fastcgi_copy() 35 static int data_fastcgi_insert_dup(data_unset *dst, data_unset *src) { in data_fastcgi_insert_dup() argument 38 src->free(src); in data_fastcgi_insert_dup()
|
| H A D | array.c | 23 array *array_init_array(array *src) { in array_init_array() argument 27 a->used = src->used; in array_init_array() 28 a->size = src->size; in array_init_array() 29 a->next_power_of_2 = src->next_power_of_2; in array_init_array() 30 a->unique_ndx = src->unique_ndx; in array_init_array() 32 a->data = malloc(sizeof(*src->data) * src->size); in array_init_array() 33 for (i = 0; i < src->size; i++) { in array_init_array() 34 if (src->data[i]) a->data[i] = src->data[i]->copy(src->data[i]); in array_init_array() 38 a->sorted = malloc(sizeof(*src->sorted) * src->size); in array_init_array() 39 memcpy(a->sorted, src->sorted, sizeof(*src->sorted) * src->size); in array_init_array()
|
| H A D | data_config.c | 8 data_config *src = (data_config *)s; in data_config_copy() local 11 buffer_copy_string_buffer(ds->key, src->key); in data_config_copy() 12 buffer_copy_string_buffer(ds->comp_key, src->comp_key); in data_config_copy() 14 ds->value = array_init_array(src->value); in data_config_copy() 46 static int data_config_insert_dup(data_unset *dst, data_unset *src) { in data_config_insert_dup() argument 49 src->free(src); in data_config_insert_dup()
|
| H A D | buffer.h | 53 int buffer_copy_string_buffer(buffer *b, const buffer *src); 62 int buffer_append_string_buffer(buffer *b, const buffer *src); 101 int buffer_path_simplify(buffer *dest, buffer *src);
|
| H A D | array.h | 23 struct data_unset *(*copy)(const struct data_unset *src); \ 26 int (*insert_dup)(struct data_unset *dst, struct data_unset *src); \
|
| H A D | Makefile.am | 5 LEMON=$(top_builddir)/src/lemon$(EXEEXT) 79 src = server.c response.c connections.c network.c \ macro 95 src += $(common_src) 286 lighttpd_SOURCES = $(src)
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/ |
| H A D | install-sh | 79 src= 246 for src 249 case $src in 250 -* | [=\(\)!]) src=./$src;; 254 dst=$src 263 if test ! -f "$src" && test ! -d "$src"; then 264 echo "$0: $src does not exist." >&2 282 dst=$dstdir/`basename "$src"` 437 (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && 443 # errors from the above "$doit $cpprog $src $dsttmp" command.
|
| H A D | distribute.sh.in | 30 MD5SRPM=`md5sum /home/jan/rpmbuild/SRPMS/${NAME}-1.src.rpm| cut -b 1-32` 47 - ${NAME}-1.src.rpm 48 ${DLNAME}-1.src.rpm 67 - ${NAME}-1.src.rpm
|
| H A D | INSTALL | 84 -- This should be $<path_to_lighttpd>/src/mos.conf 118 $ sudo ./src/lighttpd -D -f ${PATH_OF_CONFIG_FILE} -n ${NO_OF_CORES} 148 $ sudo ./src/lighttpd -D -f ${PATH_OF_CONFIG_FILE} -n ${NO_OF_CORES}
|
| H A D | Makefile.am | 1 SUBDIRS=src doc tests subdir
|
| /mOS-networking-stack/core/src/bpf/ |
| H A D | sf_optimize.c | 2141 struct slist *src; local 2171 src = p->stmts; 2177 offset[off] = src; 2178 src = src->next; 2182 for (src = p->stmts; src; src = src->next) 2184 if (src->s.code == NOP) 2187 dst->k = src->s.k; 2190 if (BPF_CLASS(src->s.code) != BPF_JMP || src->s.code == (BPF_JMP | BPF_JA)) 2193 if (src->s.jt || src->s.jf) 2209 printf("code=%x off=%d %x %x\n", src->s.code, off, src->s.jt, src->s.jf); [all …]
|
| /mOS-networking-stack/core/src/include/ |
| H A D | netmap_user.h | 273 const uint64_t *src = (const uint64_t *)_src; in nm_pkt_copy() local 277 memcpy(dst, src, l); in nm_pkt_copy() 281 *dst++ = *src++; in nm_pkt_copy() 282 *dst++ = *src++; in nm_pkt_copy() 283 *dst++ = *src++; in nm_pkt_copy() 284 *dst++ = *src++; in nm_pkt_copy() 285 *dst++ = *src++; in nm_pkt_copy() 286 *dst++ = *src++; in nm_pkt_copy() 287 *dst++ = *src++; in nm_pkt_copy() 288 *dst++ = *src++; in nm_pkt_copy()
|
| /mOS-networking-stack/util/ |
| H A D | rss.c | 177 char *src[] = {"66.9.149.187", in VerifyRSSHash() local 204 if (inet_aton(src[i], &addr) == 0) { in VerifyRSSHash() 220 src[i], dest[i], src_port[i], dest_port[i], in VerifyRSSHash()
|
| /mOS-networking-stack/core/test/tree/ |
| H A D | Makefile | 6 SRC=../../src
|
| /mOS-networking-stack/core/test/tcprb/ |
| H A D | Makefile | 4 SRC=../../src
|
| /mOS-networking-stack/core/test/scalable_event/ |
| H A D | Makefile | 6 SRC_DIR=../../src
|
| /mOS-networking-stack/docs/ |
| H A D | Makefile.template | 40 cd $(MTCP_FLD)/src && make
|
| /mOS-networking-stack/samples/midstat/ |
| H A D | Makefile.in | 38 cd $(MTCP_FLD)/src && make
|
| /mOS-networking-stack/samples/nat/ |
| H A D | Makefile.in | 38 cd $(MTCP_FLD)/src && make
|