You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sh...@apache.org on 2009/08/17 08:29:40 UTC

svn commit: r804872 - in /webservices/axis2/trunk/c/include: axis2_http_server.h axis2_http_svr_thread.h axis2_transport_receiver.h

Author: shankar
Date: Mon Aug 17 06:29:40 2009
New Revision: 804872

URL: http://svn.apache.org/viewvc?rev=804872&view=rev
Log:
code formatting

Modified:
    webservices/axis2/trunk/c/include/axis2_http_server.h
    webservices/axis2/trunk/c/include/axis2_http_svr_thread.h
    webservices/axis2/trunk/c/include/axis2_transport_receiver.h

Modified: webservices/axis2/trunk/c/include/axis2_http_server.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_server.h?rev=804872&r1=804871&r2=804872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_server.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_server.h Mon Aug 17 06:29:40 2009
@@ -1,20 +1,19 @@
-
 /*
-* Licensed to the Apache Software Foundation (ASF) under one or more
-* contributor license agreements.  See the NOTICE file distributed with
-* this work for additional information regarding copyright ownership.
-* The ASF licenses this file to You under the Apache License, Version 2.0
-* (the "License"); you may not use this file except in compliance with
-* the License.  You may obtain a copy of the License at
-*
-*      http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 
 #ifndef AXIS2_HTTP_SERVER_H
 #define AXIS2_HTTP_SERVER_H
@@ -26,9 +25,9 @@
  */
 
 /**
-  * @file axis2_http_server.h
-  * @brief axis2 HTTP Server implementation
-  */
+ * @file axis2_http_server.h
+ * @brief axis2 HTTP Server implementation
+ */
 
 #include <axis2_const.h>
 #include <axis2_defines.h>
@@ -36,6 +35,7 @@
 #include <axis2_conf_ctx.h>
 #include <axis2_transport_receiver.h>
 
+
 #ifdef __cplusplus
 extern "C"
 {
@@ -46,12 +46,12 @@
         const axutil_env_t * env,
         const axis2_char_t * repo,
         const int port);
-	
-	AXIS2_EXTERN axis2_transport_receiver_t *AXIS2_CALL
-	axis2_http_server_create_with_file(
-    	const axutil_env_t * env,
-    	const axis2_char_t * file,
-    	const int port);
+
+    AXIS2_EXTERN axis2_transport_receiver_t *AXIS2_CALL
+    axis2_http_server_create_with_file(
+        const axutil_env_t * env,
+        const axis2_char_t * file,
+        const int port);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
     axis2_http_server_stop(

Modified: webservices/axis2/trunk/c/include/axis2_http_svr_thread.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_svr_thread.h?rev=804872&r1=804871&r2=804872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_svr_thread.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_svr_thread.h Mon Aug 17 06:29:40 2009
@@ -1,4 +1,3 @@
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -27,7 +26,7 @@
 
 /**
  * @file axis2_http_svr_thread.h
- * @brief axis2 HTTP server listning thread implementation
+ * @brief axis2 HTTP server listening thread implementation
  */
 
 #include <axis2_const.h>
@@ -35,6 +34,7 @@
 #include <axutil_env.h>
 #include <axis2_http_worker.h>
 
+
 #ifdef __cplusplus
 extern "C"
 {
@@ -104,7 +104,6 @@
      * @param port
      */
     AXIS2_EXTERN axis2_http_svr_thread_t *AXIS2_CALL
-
     axis2_http_svr_thread_create(
         const axutil_env_t * env,
         int port);

Modified: webservices/axis2/trunk/c/include/axis2_transport_receiver.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_transport_receiver.h?rev=804872&r1=804871&r2=804872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_transport_receiver.h (original)
+++ webservices/axis2/trunk/c/include/axis2_transport_receiver.h Mon Aug 17 06:29:40 2009
@@ -1,20 +1,19 @@
-
 /*
-* Licensed to the Apache Software Foundation (ASF) under one or more
-* contributor license agreements.  See the NOTICE file distributed with
-* this work for additional information regarding copyright ownership.
-* The ASF licenses this file to You under the Apache License, Version 2.0
-* (the "License"); you may not use this file except in compliance with
-* the License.  You may obtain a copy of the License at
-*
-*      http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 
 #ifndef AXIS2_TRANSPORT_RECEIVER_H
 #define AXIS2_TRANSPORT_RECEIVER_H
@@ -37,14 +36,15 @@
  * @brief Axis2 description transport receiver interface
  */
 
-#include <axis2_const.h>
-#include <axutil_error.h>
-#include <axis2_defines.h>
-#include <axutil_env.h>
-#include <axutil_allocator.h>
-#include <axis2_endpoint_ref.h>
-#include <axis2_ctx.h>
-#include <axis2_conf_ctx.h>
+ #include <axis2_const.h>
+ #include <axutil_error.h>
+ #include <axis2_defines.h>
+ #include <axutil_env.h>
+ #include <axutil_allocator.h>
+ #include <axis2_endpoint_ref.h>
+ #include <axis2_ctx.h>
+ #include <axis2_conf_ctx.h>
+
 
 #ifdef __cplusplus
 extern "C"
@@ -58,8 +58,7 @@
     typedef struct axis2_transport_receiver axis2_transport_receiver_t;
 
     /** Type name for axis2_transport_receiver_ops */
-    typedef struct axis2_transport_receiver_ops
-                axis2_transport_receiver_ops_t;
+    typedef struct axis2_transport_receiver_ops axis2_transport_receiver_ops_t;
 
     /**
      * @brief Description Transport Receiver ops struct
@@ -71,84 +70,70 @@
         /**
          * @param transport_receiver pointer to transport receiver
          * @param env pointer to environment struct
-         * @param conf_ctx pointer to configuratoin context
+         * @param conf_ctx pointer to configuration context
          * @param intrasport_in pointer to transport_in
          */
-        axis2_status_t(
-            AXIS2_CALL
-            * init)(
-                axis2_transport_receiver_t * transport_receiver,
-                const axutil_env_t * env,
-                struct axis2_conf_ctx * conf_ctx,
-                struct axis2_transport_in_desc * transport_in);
+        axis2_status_t(AXIS2_CALL * init)(
+            axis2_transport_receiver_t * transport_receiver,
+            const axutil_env_t * env,
+            struct axis2_conf_ctx * conf_ctx,
+            struct axis2_transport_in_desc * transport_in);
 
         /**
          * @param transport_receiver
-         * @param env pointer to environmnet struct
+         * @param env pointer to environment struct
          */
-        axis2_status_t(
-            AXIS2_CALL
-            * start)(
-                axis2_transport_receiver_t * transport_receiver,
-                const axutil_env_t * env);
+        axis2_status_t(AXIS2_CALL * start)(
+            axis2_transport_receiver_t * transport_receiver,
+            const axutil_env_t * env);
 
         /**
          * @param tranport_receiver pointer to transport receiver
-         * @param env pointer to environmnet struct
+         * @param env pointer to environment struct
          * @param svc_name pointer to service name
          */
-        axis2_endpoint_ref_t *(
-            AXIS2_CALL
-            * get_reply_to_epr)(
-                axis2_transport_receiver_t * transport_receiver,
-                const axutil_env_t * env,
-                const axis2_char_t * svc_name);
+        axis2_endpoint_ref_t *(AXIS2_CALL * get_reply_to_epr)(
+            axis2_transport_receiver_t * transport_receiver,
+            const axutil_env_t * env,
+            const axis2_char_t * svc_name);
 
         /**
          * @param server pointer to server
          * @param env pointer to environment struct
          */
-        struct axis2_conf_ctx *(
-                        AXIS2_CALL
-                        * get_conf_ctx)(
-                            axis2_transport_receiver_t * server,
-                            const axutil_env_t * env);
+        struct axis2_conf_ctx *(AXIS2_CALL * get_conf_ctx)(
+            axis2_transport_receiver_t * server,
+            const axutil_env_t * env);
 
         /**
          * @param server pointer to server
          * @param env pointer to environment struct
          */
-        axis2_bool_t(
-            AXIS2_CALL
-            * is_running)(
-                axis2_transport_receiver_t * server,
-                const axutil_env_t * env);
+        axis2_bool_t(AXIS2_CALL * is_running)(
+            axis2_transport_receiver_t * server,
+            const axutil_env_t * env);
 
         /**
          * @param transport_receiver pointer to transport receiver
          * @param env pointer to environment struct
          */
-        axis2_status_t(
-            AXIS2_CALL
-            * stop)(
-                axis2_transport_receiver_t * transport_receiver,
-                const axutil_env_t * env);
+        axis2_status_t(AXIS2_CALL * stop)(
+            axis2_transport_receiver_t * transport_receiver,
+            const axutil_env_t * env);
 
         /**
          * De-allocate memory
          * @param transport_receiver pointer to transport receiver
          * @param env pointer to environment struct
          */
-        void(
-            AXIS2_CALL
-            * free)(
-                axis2_transport_receiver_t * transport_receiver,
-                const axutil_env_t * env);
+        void(AXIS2_CALL * free)(
+            axis2_transport_receiver_t * transport_receiver,
+            const axutil_env_t * env);
 
     };
 
     /**
-     * @brief Transport Reciever  struct  
+     * @brief Transport Receiver  struct
      */
     struct axis2_transport_receiver
     {
@@ -156,14 +141,14 @@
     };
 
     /** Frees the transport receiver.
-        @sa axis2_transport_receiver#free */
+     @sa axis2_transport_receiver#free */
     AXIS2_EXTERN void AXIS2_CALL
     axis2_transport_receiver_free(
         axis2_transport_receiver_t * transport_receiver,
         const axutil_env_t * env);
 
     /** Initialize the transport receiver.
-        @sa axis2_transport_receiver#init */
+     @sa axis2_transport_receiver#init */
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
     axis2_transport_receiver_init(
         axis2_transport_receiver_t * transport_receiver,
@@ -172,38 +157,36 @@
         struct axis2_transport_in_desc *transport_in);
 
     /** Start
-        @sa axis2_transport_receiver#start */
+     @sa axis2_transport_receiver#start */
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
     axis2_transport_receiver_start(
         axis2_transport_receiver_t * transport_receiver,
         const axutil_env_t * env);
 
     /** Stop.
-        @sa axis2_transport_receiver#stop */
+     @sa axis2_transport_receiver#stop */
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
     axis2_transport_receiver_stop(
         axis2_transport_receiver_t * transport_receiver,
         const axutil_env_t * env);
 
     /** Get reply to epr.
-        @sa axis2_transport_receiver#get_reply_to_epr */
+     @sa axis2_transport_receiver#get_reply_to_epr */
     AXIS2_EXTERN axis2_endpoint_ref_t *AXIS2_CALL
-
     axis2_transport_receiver_get_reply_to_epr(
         axis2_transport_receiver_t * transport_receiver,
         const axutil_env_t * env,
         const axis2_char_t * svc_name);
 
     /** Get conf ctx.
-        @sa axis2_transport_receiver#get_conf_ctx */
+     @sa axis2_transport_receiver#get_conf_ctx */
     AXIS2_EXTERN struct axis2_conf_ctx *AXIS2_CALL
-
-                axis2_transport_receiver_get_conf_ctx(
-                    axis2_transport_receiver_t * transport_receiver,
-                    const axutil_env_t * env);
+    axis2_transport_receiver_get_conf_ctx(
+        axis2_transport_receiver_t * transport_receiver,
+        const axutil_env_t * env);
 
     /** Is running.
-        @sa axis2_transport_receiver#is_running */
+     @sa axis2_transport_receiver#is_running */
     AXIS2_EXTERN axis2_bool_t AXIS2_CALL
     axis2_transport_receiver_is_running(
         axis2_transport_receiver_t * transport_receiver,