version 1.38 | | version 1.39 |
---|
| | |
| | |
/* | | /* |
* static char *rcsid_item_c = | | * static char *rcsid_item_c = |
* "$Id: item.c,v 1.38 2006/03/18 15:05:37 ryo_saeba Exp $"; | | * "$Id: item.c,v 1.39 2006/05/05 09:41:15 ryo_saeba Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
* single byte in length. If the data is longer than that byte, it is | | * single byte in length. If the data is longer than that byte, it is |
* truncated approprately. | | * truncated approprately. |
*/ | | */ |
inline void add_stringlen_to_sockbuf(const char *buf, SockList *sl) | | static inline void add_stringlen_to_sockbuf(const char *buf, SockList *sl) |
{ | | { |
int len; | | int len; |
| | |
| | |
* This is a similar to query_name, but returns flags | | * This is a similar to query_name, but returns flags |
* to be sended to client. | | * to be sended to client. |
*/ | | */ |
unsigned int query_flags (object *op) | | static unsigned int query_flags(const object *op) |
{ | | { |
unsigned int flags = 0; | | unsigned int flags = 0; |
| | |
| | |
* pointer, or null if it can't be found. | | * pointer, or null if it can't be found. |
*/ | | */ |
| | |
object *esrv_get_ob_from_count(object *pl, tag_t count) | | static object *esrv_get_ob_from_count(object *pl, tag_t count) |
{ | | { |
object *op, *tmp; | | object *op, *tmp; |
| | |