Changeset 745 for trunk/server/source4/smbd/process_single.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source4/smbd/process_single.c
r414 r745 30 30 called when the process model is selected 31 31 */ 32 static void single_model_init( struct tevent_context *ev)32 static void single_model_init(void) 33 33 { 34 34 } … … 56 56 57 57 We can only be here if woken up from select, due to 58 an incom ming connection.58 an incoming connection. 59 59 60 60 We need to throttle things until the system clears … … 72 72 /* The cluster_id(0, fd) cannot collide with the incrementing 73 73 * task below, as the first component is 0, not 1 */ 74 new_conn(ev, lp_ctx, connected_socket, 74 new_conn(ev, lp_ctx, connected_socket, 75 75 cluster_id(0, socket_get_fd(connected_socket)), private_data); 76 76 } … … 80 80 */ 81 81 static void single_new_task(struct tevent_context *ev, 82 struct loadparm_context *lp_ctx, 82 struct loadparm_context *lp_ctx, 83 83 const char *service_name, 84 84 void (*new_task)(struct tevent_context *, struct loadparm_context *, struct server_id, void *), … … 98 98 99 99 /* called when a task goes down */ 100 static void single_terminate(struct tevent_context *ev, struct loadparm_context *lp_ctx, const char *reason) 100 static void single_terminate(struct tevent_context *ev, struct loadparm_context *lp_ctx, const char *reason) 101 101 { 102 DEBUG( 2,("single_terminate: reason[%s]\n",reason));102 DEBUG(3,("single_terminate: reason[%s]\n",reason)); 103 103 } 104 104
Note:
See TracChangeset
for help on using the changeset viewer.