Subversion Repositories HelenOS

Rev

Rev 3438 | Rev 3452 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3438 Rev 3443
Line 56... Line 56...
56
void proto_cleanup(void);
56
void proto_cleanup(void);
57
 
57
 
58
void proto_register(int srv, proto_t *proto);
58
void proto_register(int srv, proto_t *proto);
59
proto_t *proto_get_by_srv(int srv);
59
proto_t *proto_get_by_srv(int srv);
60
proto_t *proto_new(char *name);
60
proto_t *proto_new(char *name);
-
 
61
void proto_delete(proto_t *proto);
61
void proto_add_oper(proto_t *proto, int method, oper_t *oper);
62
void proto_add_oper(proto_t *proto, int method, oper_t *oper);
62
oper_t *proto_get_oper(proto_t *proto, int method);
63
oper_t *proto_get_oper(proto_t *proto, int method);
63
 
64
 
64
oper_t *oper_new(char *name);
65
oper_t *oper_new(char *name);
65
 
66